读取请求正文时使用 GET 或 POST

发布于 2024-11-07 14:10:35 字数 86 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

以可爱出名 2024-11-14 14:10:36

关于该主题的精彩描述和有趣的讨论:

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/

徒留西风 2024-11-14 14:10:36

如果您不打算使用查询字符串,则应使用 POST。

POST should be used if you are not planing on using the query string.

幻想少年梦 2024-11-14 14:10:35

GET 从请求 URL 中提取参数。 POST 从请求正文中提取参数。

所以你需要POST。

GET extracts parameters from the request URL. POST extracts parameters from the request body.

So you need POST.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文