我正在玩gorilla.muxGo的图书馆。我有以下配置,但我无法弄清楚到达该HelloWorldXml方法的 URL 。
func main() {
router := mux.NewRouter()
router.HandleFunc("/{name}.xml", HelloWorldXml).
PathPrefix("/products/")
router.HandleFunc("/hello/{name}", HelloWorld)
http.Handle("/", router)
http.ListenAndServe(":8787",nil)
}
要使用的正确 URL 是什么? http://localhost:8787/products/MyName.xml返回 404。
守着一只汪
相关分类