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

时间:2017-10-05 15:51:24

标签: go url-routing

以下是我展示html模板的功能。我最近开始在我的博客页面上工作,出于某种原因我的第一个和第二个“其他如果”语句没有被击中。 :

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)
        }
    }
}

1 个答案:

答案 0 :(得分:1)

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

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

我希望模板.Lookup不会进行任何文件系统调用,可能只是在地图中查找它们。

另外,不要这样做:

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

如果r.URL.Path [1:]是“../mysecretfile”并且你有匹配的文件会怎么样?使用外部字符串而不用路径清理它们并不是一个好主意。清洁或类似。