gpt4 book ai didi

javascript - 保存时向 BackBone.js 返回一个值

转载 作者:行者123 更新时间:2023-11-29 20:03:12 25 4
gpt4 key购买 nike

所以我正在使用 backbone.js,并且我正在尝试保存一个模型。在服务器端,我为接收到的模型生成一个 GUID,然后返回该 GUID,以便模型在客户端拥有它。

我的功能是这样的

    this.save({},
{
success: function (model, response) {
alert(response);
},
error: function (model, response) {
alert(response)
}
});

它将对象发送到服务器,它从帖子中返回我想要的值。它返回 (HTTP/1.1 200 OK) 但它调用了错误函数(其中有我正确的返回值)有什么想法吗?

我在控制台做了以下操作

JSON.stringify(response)
"{"readyState":4,"responseText":"5dad212e-73bf-4e01-911a-397b81f77022","status":200,"statusText":"OK"}"

所以它返回了 200 和 guid 但没有触发成功....我真的不想只使用错误函数,因为那不是应该触发的:p

提前致谢!

最佳答案

查看您的 resposneText,服务器似乎未返回可接受的响应 - 不是正确的 json 对象。使服务器返回响应,如

{ 
"guid" : "id_to_be_returned" //,
// and other attributes to be added in the model
}

并将响应类型设置为json。它应该有效。

关于javascript - 保存时向 BackBone.js 返回一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13281970/

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