其他分享
首页 > 其他分享> > goweb-处理静态资源

goweb-处理静态资源

作者:互联网

处理静态文件

对于 HTML 页面中的 css 以及 js 等静态文件,需要使用使用 net/http 包下的以下
方法来处理

1) StripPrefix 函数
2) FileServer 函数

3) 例如:
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("views/static"))))

标签:文件,http,views,静态,goweb,处理,static,css
来源: https://www.cnblogs.com/ygjzs/p/12188800.html