关于《The way to go》第十九章的例子的问题

Loverush · · 875 次点击
原来如此,感谢!
#2
更多评论
这种情况你可以直接去看下参考代码,看看和你的有什么区别。主要是少了一行代码,他书中没说。 https://github.com/unknwon/the-way-to-go_ZH_CN/blob/master/eBook/examples/chapter_19/goto_v1/main.go#L36 ```go func Add(w http.ResponseWriter, r *http.Request) { url := r.FormValue("url") if url == "" { w.Header().Set("Content-Type", "text/html") fmt.Fprintf(w, AddForm) return } key := store.Put(url) fmt.Fprintf(w, "http://localhost:8080/%s", key) } ```
#1