为了账号安全,请及时绑定邮箱和手机立即绑定

“PathPrefix”如何在 Go 的“gorilla.mux”库中工作?

“PathPrefix”如何在 Go 的“gorilla.mux”库中工作?

Go
狐的传说 2021-06-15 02:08:48
我正在玩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。
查看完整描述

1 回答

?
守着一只汪

TA贡献1872条经验 获得超3个赞

 func main() {

    router := mux.NewRouter()

    router.HandleFunc("/{name}.xml", HelloWorldXml)

    subrouter := router.PathPrefix("/products/").Subrouter()

    //localhost/products/item.xml

    subrouter.HandleFunc("/{name}.xml", HelloWorldXmlHandler)

    router.HandleFunc("/hello/{name}", HelloWorld)

    http.Handle("/", router)

    http.ListenAndServe(":8787",nil)

}


查看完整回答
反对 回复 2021-06-28
  • 1 回答
  • 0 关注
  • 339 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信