我试图让我的 Web 服务器在一个函数中接受不同的套接字调用。我的代码如下所示:
去:
func handler(w io.Writer, r *io.ReadCloser) {
//do something
}
func main() {
http.HandleFunc("/", handler)
http.ListenAndServe(":3000", nil)
}
我收到错误:
cannot use handler (type func(io.Writer, *io.ReadCloser)) as type func(http.ResponseWriter, *http.Request) in argument to http.HandleFunc
我该如何实施?
千万里不及你
相关分类