Backbone.js 保存行为怪异

发布于 2024-12-09 04:26:32 字数 359 浏览 0 评论 0原文

我创建一个新模型(msg)并保存它,如下所示:

msg.save({}, {success: this.createSuccess, error: function(model, response){
  console.log('nay', response);
}});

现在服务器返回 status: 200statusText: "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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

请止步禁区 2024-12-16 04:26:32

你体内有什么东西在返回吗?如果你返回的只是头部的 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.

烟柳画桥 2024-12-16 04:26:32

如果您想返回空响应,则响应代码应为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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文