在 PHP 中使用 Ajax 时,需要执行以下哪些操作才能验证成功?
以下哪些答案是正确的?
- HTTP 就绪状态 TRUE
- HTTP 就绪状态 4
- HTTP 状态码 < 400
- 200 数据的 HTTP 状态
- 响应中存在
Which of the following answers are correct ?
- HTTP ready state of TRUE
- HTTP ready state of 4
- HTTP status code < 400
- HTTP status of 200
- Data present in the response
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
HTTP 状态为 200 且 HTTP 就绪状态为 TRUE
both HTTP status of 200 and HTTP ready state of TRUE
在我的所有应用程序中,我只需要
就绪状态 4
即可成功,这意味着:请求已完成并且响应(如果有)可用。但正如马德马蒂根非常明智地评论的那样:定义你的成功版本。
In all my apps, I require only
ready state 4
for success, which means as little as: the request is done and the response (if any) is available.But like Madmartigan very wisely commented: define your version of success.
通常,需要 HTTP 就绪状态 4 和 HTTP 状态代码 200,以保证数据已成功传输回您的程序。
Usually, an HTTP ready state of 4 and HTTP status code of 200 is needed in order to guarantee that data has been successfully transferred back to your program.