问题:使用http包搭建本地服务器,使用本机ip:端口 无法访问,同局域网内也无法访问该服务器
代码:
```
package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/", HelloHandler)
http.ListenAndServe(":8000", nil)
// 或者 http.ListenAndServe("0.0.0.0:8000", nil)
}
func HelloHandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "hello world")
}
```
127.0.0.1:8000、
localhost:8000、
0.0.0.0:8000、
都好使
本机ip :8000 访问不行
萌新 求各位大佬们指导 :smiley:
http.ListenAndServe("0.0.0.0:8000", nil)
换成
http.ListenAndServe(":8000", nil)
}
#1
更多评论