1

我现在正在开发应用程序,当我创建一个组时,保存功能很好,模型被添加到集合中,并保存到数据库中,但是如果我想编辑我刚刚创建的组,当我点击保存时创建新模型(和 POST 请求),而不是编辑数据并触发 PUT 请求。这是我的保存功能 - 在编辑现有模型时我没有触发 PUT 请求有什么原因吗?

GroupModalHeaderView.prototype.save = function(e) {
  var $collection, $this;
  if (e) {
    e.preventDefault();
  }

  $this = this;
  if (this.$("#group-name").val() !== "") {
    $collection = this.collection;
    if (this.model.isNew()) {
      this.collection.add(this.model);
    }
    return this.model.save({ name: this.$("#group-name").val()}, {
      async: false,
      wait: true,
      success: function() {
        var modelID = $this.model.get('id');

        return this.modal = new app.GroupModalView({
          model: $this.collection.get(modelID),
          collection: $this.collection
        });
      }
    });
  }

};

这是我的模型默认值,

Group.prototype.defaults = {
  user_id: "",
  name: "New Group",
  email: "",
  url: "",
  telephone: "",
  mobile: "",
  fax: "",
  people: ""
};

this.model这是保存之前的console.log ,

    Group {cid: "c116", attributes: Object, _changing: false, _previousAttributes:    Object, changed: Object…}
        _changing: false
        _events: Object
        _pending: false
        _previousAttributes: Object
        email: ""
        fax: ""
        mobile: ""
        name: "New Group"
        people: ""
        telephone: ""
        url: ""
        user_id: ""
        wait: true
        __proto__: Object
        attributes: Object
        changed: Object
        cid: "c116"
        collection: GroupCollection
        id: 189
        __proto__: ctor
4

1 回答 1

1

Backbone.js 触发 POST 请求而不是 PUT 的原因是因为您的模型没有id与之关联的唯一标识符。如果没有id与您的模型关联的属性,Backbone.js 将始终触发 POST 请求以保存新的进入分贝。

从主干的网站:

save model.save([attributes], [options]) ... 如果模型是New,则

保存将是“创建”(HTTP POST),如果模型已经存在于服务器上,则保存将是“更新”(HTTP PUT)。

阅读此 SO 问题以获取更多信息。

于 2013-07-17T10:59:52.677 回答