다음은 내 HTML 템플릿을 표시하는 기능입니다. 나는 최근에 내 블로그 페이지에서 일을 시작했는데 어떤 이유로 내 첫 번째 및 두 번째 "else if"문이 부딪치지 않습니다. :내 URL.Path 문이 맞지 않는 이유는 무엇입니까
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)
}
}
}
URL 경로는 슬래시로 시작합니다. – Peter
또한이'if r.URL.Path == "blog/*"'... 만약'=='이 당신을 위해 정규 표현식 매칭을한다면 당신은 틀렸다고 가정한다면, 다른 한편으로는 그런 종말점은 나를 무시합니다. – mkopriva
if 앞에는'r.URL.Path'가 출력되지 않습니다. –