草庐IT

PathPrefixed

全部标签

go - 具有独立处理程序的 PathPrefixed 子路由器

鉴于以下(completeexampleatGoplayground)://Collectionroot:=r.PathPrefix("/widgets/").Subrouter()root.Methods("POST").Handler(h.Create)//Individualobject:=root.PathPrefix("/{uuid}").Subrouter()//~neither:object:=root.PathPrefix("/{uuid}").Subrouter()object.Methods("GET").Handler(h.Show)object.Methods(

go - 具有独立处理程序的 PathPrefixed 子路由器

鉴于以下(completeexampleatGoplayground)://Collectionroot:=r.PathPrefix("/widgets/").Subrouter()root.Methods("POST").Handler(h.Create)//Individualobject:=root.PathPrefix("/{uuid}").Subrouter()//~neither:object:=root.PathPrefix("/{uuid}").Subrouter()object.Methods("GET").Handler(h.Show)object.Methods(