gpt4 book ai didi

php - Ajax/php - 如何返回失败

转载 作者:可可西里 更新时间:2023-11-01 12:51:58 26 4
gpt4 key购买 nike

jquery 允许成功失败和错误响应。我如何手动返回失败或错误以及描述失败者或错误的字符串?

最佳答案

使用简单的 JSON 信封来报告发生在服务器端的故障(不是 HTTP 错误)已经成为某种惯例。

flickr api提供了一个典型的打包示例:

look at the bottom of this page for success and failure examples

因此,在对 flickr API 进行 Ajax 调用的情况下,在您的成功回调中,您将检查成功/失败的返回数据

$.ajax({   
//...
success: function(data) {
if(data.stat == 'fail') {
//data.code + data.message contain details that could be used here
}
else {
//do success stuff here
}
}
});

关于php - Ajax/php - 如何返回失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3569907/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com