gpt4 book ai didi

go - 为什么我的 URL.Path 语句没有被命中

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

下面是我展示 html 模板的函数。我最近开始在我的博客页面上工作,由于某种原因,我的第一个和第二个“else if”语句没有被击中。 :

func handleRequest(w http.ResponseWriter, r *http.Request) {
templates := populateTemplates()
// present home.html if the request url is "/"
if r.URL.Path == "/" {
t := templates.Lookup("home.html")
t.Execute(w, nil)
} else if r.URL.Path == "blog/" {
posts := getPosts()
t := template.New("blog.html")
t, _ = t.ParseFiles("blog.html")
t.Execute(w, posts)
return
} else if r.URL.Path == "blog/*" {
f := "blog/" + r.URL.Path[1:] + ".md"
fileread, _ := ioutil.ReadFile(f)
lines := strings.Split(string(fileread), "\n")
status := string(lines[0])
title := string(lines[1])
date := string(lines[2])
summary := string(lines[3])
body := strings.Join(lines[4:len(lines)], "\n")
htmlBody := template.HTML(blackfriday.MarkdownCommon([]byte(body)))
post := Post{status, title, date, summary, htmlBody, r.URL.Path[1:]}
t := template.New("_post.html")
t, _ = t.ParseFiles("_post.html")
t.Execute(w, post)
} else {
requestedFile := r.URL.Path[1:]
t := templates.Lookup(requestedFile + ".html")
if t != nil {
err := t.Execute(w, nil)
if err != nil {
log.Println(err)
}
} else {
w.WriteHeader(http.StatusNotFound)
}
}
}

最佳答案

假设问题出在博客网址上,您可以试试这个:

 if r.URL.Path == "/" {
...
} else if r.URL.Path == "/blog" {
...
} else if strings.HasPrefix(r.URL.Path,"/blog/") {
....
} else {

我希望 templates.Lookup 不会进行任何文件系统调用,大概它只是在 map 中查找它们。

此外,不要这样做:

 f := "blog/" + r.URL.Path[1:] + ".md"
fileread, _ := ioutil.ReadFile(f)

如果 r.URL.Path[1:] 是 "../mysecretfile"并且你在那里有一个匹配的文件会发生什么?使用外部字符串而不用 path.Clean 或类似方法清理它们不是一个好主意。

关于go - 为什么我的 URL.Path 语句没有被命中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46589921/

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