gpt4 book ai didi

Jquery - Resonse.statusText 未定义,即使它显示在浏览器工具中

转载 作者:行者123 更新时间:2023-12-01 04:13:58 26 4
gpt4 key购买 nike

在我的操作方法中,我返回:

catch (Exception ex)
{
return new HttpStatusCodeResult(500, "This is an error!");
}

在我的backbone.js fetch中我使用的是这个:

 error: function(response, status, error) {
alert(response.statusText);
}

浏览器工具在状态下显示我的消息,但警报框显示未定义。 enter image description here

我在这个线程中看到了这个方法 -> Custom Error message with HTTPStatusCodeResult & jQuery

知道为什么它不起作用吗?

最佳答案

以下是error回调的参数:

(model, response, options)

所以基本上你正在尝试获取当然是未定义的 model.statusTextresponse 对应于第二个参数,因此请尝试 response.statusText (在您的情况下,status.statusText ~~)。

关于Jquery - Resonse.statusText 未定义,即使它显示在浏览器工具中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16739166/

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