是否有 HTTP 选项来发布数据而不要求响应?

发布于 2024-10-17 03:37:06 字数 42 浏览 4 评论 0原文

我想发布数据,但我不需要服务器的响应,有什么办法可以将其告诉服务器吗?

I want to post data, but I don't need the response from the server, is there any way I can tell this to the server?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

陌伤浅笑 2024-10-24 03:37:06

不,我认为这是不可能的。但是您可以将响应保持在最低限度,例如:

HTTP/1.1 204 
‍

That's only 17 bytes: 15 bytes for the 状态行HTTP/1.1、空格、204 状态代码,空格,无 原因短语和终止 CRLF)加上标头和不存在的消息正文之间的 CRLF 的两个字节。

No, I don’t think this is possible. But you can keep the response to a minimum like:

HTTP/1.1 204 
‍

That’s only 17 bytes: 15 bytes for the status line (HTTP/1.1, space, 204 status code, space, no reason phrase and the terminating CRLF) plus two bytes for the CRLF between the header and the non-existing message body.

谁的新欢旧爱 2024-10-24 03:37:06

您可以添加查询字符串或表单值(例如,output=“false”),如果找到,则会停止输出任何内容。由您在 PHP 中解析和解释它。

You could add either a querystring or form value (e.g., output="false") that, if found, stops anything from being output. It's up to you to parse and interpret that in your PHP.

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