发布时间:2023-01-19 文章分类:编程知识 投稿人:王小丽 字号: 默认 | | 超大 打印

1.在运行http时,报错:panic: listen tcp: address 11111: missing port in address,

func HelloWordHander(w http.ResponseWriter, r *http.Request) {
	/**
	具体看一下http协议
	*/
	fmt.Printf("request method: %s\n", r.Method)
	fmt.Printf("request host: %s\n", r.Host)
	fmt.Printf("request url: %s\n", r.URL)
	fmt.Printf("request proto: %s\n", r.Proto)
	fmt.Println("request header")
}
func main() {
	// 上面的HelloWordHander是一个
	http.HandleFunc("/", HelloWordHander)                     // 路由与视图函数作匹配
	if err := http.ListenAndServe("11111", nil); err != nil { //ListenAndServe如果不发生error会一直阻塞。为每一个请求单独创建一个协程去处理
		panic(err)
	}
}
// 然后一运行,就报错:panic: listen tcp: address 11111: missing port in address
// 更改后代码如下,更改后就能正常运行了
func main() {
	// 上面的HelloWordHander是一个
	http.HandleFunc("/", HelloWordHander)                     // 路由与视图函数作匹配
	if err := http.ListenAndServe(":11111", nil); err != nil { //ListenAndServe如果不发生error会一直阻塞。为每一个请求单独创建一个协程去处理
		panic(err)
	}
}

后续采坑会继续添加内容