go Fiber中如何动态解析请求体?
我在 go Fiber 中内置了一个 API。 我正在尝试动态地将请求正文数据解析为键值对。
众所周知, Fiber 有 context.Body()
和 context.Bodyparser()
方法来执行此操作,但我找不到任何合适的示例来动态地使用这些方法来执行此操作方法。
例如:
func handler(c *fiber.Ctx) error {
req := c.Body()
fmt.Println(string(req))
return nil
}
输出:
key=value&key2=value2&key3&value3
我正在寻找的是一个动态 json,如下所示:
{
key:"value",
key2:"value2",
key3:"value3",
}
I have an API built in go fiber.
I'm tryng to parse request body data as key value pairs dynamically.
As we know, fiber has context.Body()
and context.Bodyparser()
methods to do this but I couldn't find any proper example to do this dynamically with these methods.
e.g:
func handler(c *fiber.Ctx) error {
req := c.Body()
fmt.Println(string(req))
return nil
}
output:
key=value&key2=value2&key3&value3
What I'm looking for is a dynamic json like:
{
key:"value",
key2:"value2",
key3:"value3",
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
内容的 mime-type 为
application/x-www-form-urlencoded 不是
application/json
。要解析您可以使用net/url.ParseQuery
。其结果是一个map[string][]string
,然后您可以轻松地将其转换为map[string]string
,然后使用encoding/json
包以获得所需的 JSON 输出。您可以从以下代码开始:
The content's mime-type is
application/x-www-form-urlencoded
notapplication/json
. To parse that you can usenet/url.ParseQuery
. The result of that is amap[string][]string
which you can then easily convert to amap[string]string
and then marshal that with theencoding/json
package to get your desired JSON output.Here's a code you can start with: