请帮助我,我想添加新的路由/func来生成资源(等用户(。
app.Resource("/users", UsersResource{})
我找到了func addRoute,但不起作用。
func (a *App) addRoute(method string, url string, h Handler) *RouteInfo { ...
我的想法是这样的。
"/users/handleSomething/idOfUser"
现在我只有这个功能:
List(Context)
Show(Context)
New(Context)
Create(Context)
Edit(Context)
Update(Context)
Destroy(Context)
感谢您的时间和帮助:)
PS:对不起我的英语:(
如果需要其他路由,可以使用在*App
类型上定义的方法GET,POST,PUT, ...
。(https://gobuffalo.io/en/docs/routing#supported-http-methods(
要处理路由中的动态路径段,可以使用命名参数。(https://gobuffalo.io/en/docs/routing#named-parameters(
例:
app.PATCH("/users/handleSomething/{id}", handleSomethingHandler)
若要检索命名参数的值,可以使用c.Param("id")
其中c
是传递给处理程序的水牛上下文。