无法覆盖Backbone保存成功处理程序

我使用主干1.1.0。 自从我使用Backbone以来,它已经有一段时间了,但我确定我曾经能够轻松地覆盖保存方法的成功处理程序。 但是,现在我似乎无法做到! 我的代码是:

model.save({}, {
    successs: function() {
        console.log('in my custom success handler');
    }        
});

我的自定义处理程序不会执行,并且默认的成功处理程序会触发sync事件。

我在这里查看了这个问题并尝试了各种解决方案,但都没有成功。 这些包括在第三个参数传入成功处理程序对象,第二个参数,作为第一个参数传入null等等等等。

模型保存方法的Backbone库代码(v1.1.0)是:

save: function(key, val, options) {
  var attrs, method, xhr, attributes = this.attributes;

  // Handle both `"key", value` and `{key: value}` -style arguments.
  if (key == null || typeof key === 'object') {
    attrs = key;
    options = val;
  } else {
    (attrs = {})[key] = val;
  }

  options = _.extend({validate: true}, options);

  // If we're not waiting and attributes exist, save acts as
  // `set(attr).save(null, opts)` with validation. Otherwise, check if
  // the model will be valid when the attributes, if any, are set.
  if (attrs && !options.wait) {
    if (!this.set(attrs, options)) return false;
  } else {
    if (!this._validate(attrs, options)) return false;
  }

  // Set temporary attributes if `{wait: true}`.
  if (attrs && options.wait) {
    this.attributes = _.extend({}, attributes, attrs);
  }

  // After a successful server-side save, the client is (optionally)
  // updated with the server-side state.
  if (options.parse === void 0) options.parse = true;
  var model = this;
  var success = options.success;
  options.success = function(resp) {
    // Ensure attributes are restored during synchronous saves.
    model.attributes = attributes;
    var serverAttrs = model.parse(resp, options);
    if (options.wait) serverAttrs = _.extend(attrs || {}, serverAttrs);
    if (_.isObject(serverAttrs) && !model.set(serverAttrs, options)) {
      return false;
    }
    if (success) success(model, resp, options);
    model.trigger('sync', model, resp, options);
  };
  wrapError(this, options);

  method = this.isNew() ? 'create' : (options.patch ? 'patch' : 'update');
  if (method === 'patch') options.attrs = attrs;
  xhr = this.sync(method, this, options);

  // Restore attributes.
  if (attrs && options.wait) this.attributes = attributes;

  return xhr;
},

2件事让我感到困惑:

1 /它怎么可能覆盖成功处理程序(我确定我曾经能够做到这一点),因为当你传入一个成功处理程序时,它会分配到一个本地变量success ,然后覆盖无论如何:

  var success = options.success;
  options.success = function(resp) {
  ....

2 /为什么我的处理程序也不执行? 它应该分配给本地succss var:

var success = options.success;

然后在options.success中执行:

if (success) success(model, resp, options);

当我通过Chrome开发人员工具进行调试时,成功是未定义的。 但我可以看到:

var success = options.success;

options.success包含我的客户处理程序方法。 然而,本地变种success ,不知何故, undefined ....


我认为你的代码应该是:

model.save({}, {
  success: function(){
  //^-----this-----^
    console.log('in my custom success handler');
  }        
});
链接地址: http://www.djcxy.com/p/67089.html

上一篇: Cannnot overwrite Backbone save success handler

下一篇: Generate custom Backbone error on model.save success