问题内容 Fiber v2 (https://Go Fiber.io/) 会自动为每个 GET 路由添加一个 HEAD 路由。 有可能阻止这种情况吗? 我只想注册 GET。实际上,我只
Fiber v2 (https://Go Fiber.io/) 会自动为每个 GET 路由添加一个 HEAD 路由。 有可能阻止这种情况吗?
我只想注册 GET。实际上,我只想注册那些我显式添加的路由。
可以这样做吗?
查看(*app).get:
// get reGISters a route for get methods that requests a representation
// of the specified resource. requests using get should only retrieve data.
func (app *app) get(path string, handlers ...handler) router {
return app.head(path, handlers...).add(methodget, path, handlers...)
}
和(*group).get :
// get registers a route for get methods that requests a representation
// of the specified resource. requests using get should only retrieve data.
func (grp *group) get(path string, handlers ...handler) router {
grp.add(methodhead, path, handlers...)
return grp.add(methodget, path, handlers...)
}
没有办法阻止这种行为。您所能做的就是避免使用它们并直接使用 add
方法。例如,注册一个 get
路由,如下所示:
app.add(fiber.methodget, "/", func(c *fiber.ctx) error {
return c.sendstring("hello, world!")
})
请注意(*app).use a> 和 (*group).use 匹配所有 Http 动词。您可以像这样删除 head
方法:
methods := make([]string, 0, len(fiber.defaultmethods)-1)
for _, m := range fiber.defaultmethods {
if m != fiber.methodhead {
methods = append(methods, m)
}
}
app := fiber.new(fiber.config{
requestmethods: methods,
})
注意:只要注册 head
路由,它就会出现恐慌,因为它不包含在 requestmethods
中。
我不知道你为什么要这样做。也许更好的选择是使用中间件来拒绝所有 head
请求,如下所示:
app.Use(func(c *fiber.Ctx) error {
if c.Method() == fiber.MethodHead {
c.Status(fiber.StatusMethodNotAllowed)
return nil
}
return c.Next()
})
以上就是如何防止Fiber自动注册HEAD路由?的详细内容,更多请关注编程网其它相关文章!
--结束END--
本文标题: 如何防止Fiber自动注册HEAD路由?
本文链接: https://lsjlt.com/news/561364.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0