http服务器启动时有没有办法打印一些东西?例如"Server is started at port 8080"
在 Node(使用 Express)中,它会是这样的:
app.listen(8080, function() { console.log('Server started at port 8080') });
这是我的代码:
func main() {
http.HandleFunc("/", MyHandler)
http.ListenAndServe(":8080", nil)
}
谢谢。
芜湖不芜
达令说
跃然一笑
相关分类