我目前在 Go 工作。我在本地机器上创建了一个 Web 服务器。我按照此页面上的说明在Go Web 应用程序中渲染 CSS, 但我仍然收到 404 错误,即程序似乎无法找到我的 css 文件所在的位置。我的目录如下。
在src
文件夹包含css/somefilename.css
,src
也包含server/server.go
。
我的server.go
文件中的代码如下。
http.Handle("/css/", http.StripPrefix("/css/", http.FileServer(http.Dir("css"))))
当我去时,localhost:8080/css/
我找不到 404 页面。我还使用模板来呈现 html 代码。模板在文件夹中
src/templates/layout.html
html代码如下:
<link rel="stylesheet" type="text/css" href="../css/css490.css" />
RISEBY
相关分类