
Golang
sforiz
Opportunity to be prepared in favor of the people!
展开
-
Golang 标准库net/http自定义404页面
Golang 标准库net/http自定义404页面,通过中间件的形式来实现。type hijack404 struct { http.ResponseWriter R *http.Request Handle404 func(w http.ResponseWriter, r *http.Request) bool}// WriteHeader WriteHead...原创 2018-11-23 17:26:26 · 4626 阅读 · 0 评论 -
Golang 交叉编译
Golang 支持交叉编译,在一个平台上生成另一个平台的可执行程序。Mac 下编译 Linux 和 Windows 64位可执行程序CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build main.goCGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build main.goLinux 下编译 Mac 和 Wind...转载 2019-04-24 11:11:42 · 11003 阅读 · 0 评论