处理静态文件
对于 HTML 页面中的 css 以及 js 等静态文件,需要使用使用 net/http 包下的以下
方法来处理
-
StripPrefix 函数
-
FileServer 函数
-
例如:
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("views/static"))))
/static/
会匹配 以/static/
开发的路径,当浏览器请求index.html
页面中的
style.css
文件时,static
前缀会被替换为views/staic
,然后去views/static/css
目录中取查找style.css
文件