Chapter 30
Go网络开发
Web开发
与Vue集成
首先构建Vue工程,生成dist.
// serve static files
fs := http.FileServer(http.Dir("./frontend/dist"))
http.Handle("/",fs)
开源库
- Gin
- Gorilla : web toolkit
- go-zero: web 和 rpc 框架
- Macaron
首先构建Vue工程,生成dist.
// serve static files
fs := http.FileServer(http.Dir("./frontend/dist"))
http.Handle("/",fs)