赞
踩
因为公司最近的项目前端使用vue 3.0,后端api使用golang gin框架。测试通过后,博文记录,用于备忘。
r := gin.Default()
r.Static("/css", "./dist/css")
r.Static("/img", "./dist/img")
r.Static("/js", "./dist/js")
r.LoadHTMLGlob("dist/*.html") // 加载 HTML 模板
r.GET("/", func(c *gin.Context) {
c.HTML(http.StatusOK, "index.html", gin.H{})
})
....
参考链接中有第二种部署方法,具体差异暂时未知。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。