如何通过gin-gonic在Go中读取POST字符串

huangapple go评论83阅读模式
英文:

How to read post string in go via gin-gonic

问题

这可能是一个愚蠢的问题,但是我无法从文档中理解如何做到这一点。
请帮忙

所以,我想让客户端发送这样的POST请求

curl -X POST localhost -d "heheheh"

这不是JSON或任何编码,只是一个简单的字符串。
我该如何通过gin-gonic读取这个请求?

谢谢

英文:

This might be a stupid question, but I just cannot wrap my head around to get this from documentation.
Please help

So, I want client to send POST request like this

curl -X POST localhost -d "heheheh"

this is not json or any encoding but a simple string
How can I read this via gin-gonic ?

Thanks

答案1

得分: 2

这解决了它

str, err := c.GetRawData()
英文:

This solves it

str, err := c.GetRawData()

huangapple
  • 本文由 发表于 2023年1月31日 14:56:26
  • 转载请务必保留本文链接:https://go.coder-hub.com/75293598.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定