读取请求正文时使用 GET 或 POST
在 HTTP 请求正文中向服务器发送信息时,应该使用 GET 还是 POST 方法? URL 中没有附加任何查询参数,服务器将检查请求正文以了解其需要的内容。
Should I use the GET or POST method when sending information to a server in the body of the HTTP request? There are no query parameters appended to the URL, the server will inspect the body of the request for what it needs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
关于该主题的精彩描述和有趣的讨论:
http:// thinkvitamin.com/code/the-definitive-guide-to-get-vs-post/
A nice description and interesting discussion on the topic:
http://thinkvitamin.com/code/the-definitive-guide-to-get-vs-post/
如果您不打算使用查询字符串,则应使用 POST。
POST should be used if you are not planing on using the query string.
GET 从请求 URL 中提取参数。 POST 从请求正文中提取参数。
所以你需要POST。
GET extracts parameters from the request URL. POST extracts parameters from the request body.
So you need POST.