我正在玩gorilla.mux
Go 的库。我有以下配置,但我无法弄清楚到达该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。