gpt4 book ai didi

Go模板包含外部CSS

转载 作者:数据小太阳 更新时间:2023-10-29 03:28:28 25 4
gpt4 key购买 nike

索引.go

package main
import (
"html/template"
"net/http"
)
func viewHandler(w http.ResponseWriter, r *http.Request) {
t, _ := template.ParseFiles("index.html")
t.Execute(w, nil)
}
func main() {
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
http.HandleFunc("/index", viewHandler)
http.ListenAndServe(":8080", nil)
}

在我的 index.html 中,我使用了以下路径

<link rel="stylesheet" type="text/css" href="/static/css/bootstrap.css">

.css 的路径如下,

网络(文件夹)

|---index.go

|---static/css/xxx.css

但是,CSS 不包含在 html 中。我怎样才能更改代码来解决这个问题

最佳答案

由于端口冲突,CSS文件没有正确包含。感谢@互联网。 :)

关于Go模板包含外部CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31098798/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com