如何在 Golang 中通过 Form-Data 接收参数

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

How Can I receive params by Form-Data Golang

问题

你现在是我的中文翻译,代码部分不要翻译,只返回翻译好的部分,不要有别的内容,不要回答我要翻译的问题。以下是要翻译的内容:

我尝试了这样的方式,但是消息是空的,我该如何接收信息?(使用Golang)

英文:

如何在 Golang 中通过 Form-Data 接收参数

如何在 Golang 中通过 Form-Data 接收参数

I´m trying like this, but mensaje is empty, How Can I receive the information? (Golang)

答案1

得分: 1

你可以在这个帖子中找到关于你问题的完整答案:
https://stackoverflow.com/questions/15407719/in-gos-http-package-how-do-i-get-the-query-string-on-a-post-request

简而言之:

value := r.FormValue("field")
英文:

You can find full answer on your question in this thread:
https://stackoverflow.com/questions/15407719/in-gos-http-package-how-do-i-get-the-query-string-on-a-post-request

tldr:

value := r.FormValue("field")

huangapple
  • 本文由 发表于 2022年2月19日 18:28:24
  • 转载请务必保留本文链接:https://go.coder-hub.com/71184092.html
匿名

发表评论

匿名网友

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

确定