Backbone.js 保存行为怪异
我创建一个新模型(msg)并保存它,如下所示:
msg.save({}, {success: this.createSuccess, error: function(model, response){
console.log('nay', response);
}});
现在服务器返回 status: 200 和 statusText: "OK" 但仍然调用错误回调。
该模型没有验证,服务器 (Express.js) 也没有。
我可能忽略了什么?
我正在使用最新版本的 Backbone 和 Express...
I create a new model (msg) and save it like below:
msg.save({}, {success: this.createSuccess, error: function(model, response){
console.log('nay', response);
}});
Now the server returns status: 200 and statusText: "OK" but still the error callback is called.
The model has no validation nor does the server (Express.js).
What could I've overlooked?
I'm using the latest version of Backbone and Express…
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你体内有什么东西在返回吗?如果你返回的只是头部的 200 OK,那么你会得到一个错误。您应该从服务器返回已保存项目的 JSON 表示形式(包括 id,这对于稍后的更新/删除非常重要)。
Are you returning anything in your body? If all you are returning is 200 OK in the head, then you will get an error. You should return the JSON representation of the saved item (including the id, which is really important for updates/deletes later) from your server.
如果您想返回空响应,则响应代码应为
204 No Content
。请参阅https://stackoverflow.com/a/9104241/157943。If you want to return an empty response, the response code should be
204 No Content
. See https://stackoverflow.com/a/9104241/157943.