2

我正在尝试通过我的视图中的“signIn”功能在我的用户模型上设置数据:

initialize: function() {
    console.log('Sign in view initialized');
    this.render();

    this.userModel = new UserModel();
    this.collection = new UserCollection();
},

signIn: function(e) {
    e.preventDefault();

    var self = this;

    $.ajax({
        type: 'POST',
        url: 'http://localhost/app/api/User.php',
        dataType: "json",
        data: $.param({
            req: "REQUSERSIGNIN",
            platform: "WEB",
            useremail: $('#userSignIn #userEmail').val(),
            userpass: $('#userSignIn #userPassword').val()
        }),
        success: function(response) {

            self.userModel.set({
                handle: response.HANDLE,
                email: response.EMAIL,
                uuid: response.UUIDUSER,
                userpic: response.USERPIC,
                tokenlogin: response.TOKENLOGIN
            });

            console.log(self.userModel.get("tokenlogin"));
        }
    });
},

我读过 .fetch() 或 .save() 是做事的主要方式,但是当我使用 fetch 时,我似乎无法设置我的 UserModel。但是,当我以 jQuery.ajax() 方式执行此操作时,它会按需要运行。

有人可以向我解释在 $.ajax() 中执行它还是通过 .fetch 等执行它之间的区别。

编辑:

这是我的模型代码

var UserModel = Backbone.Model.extend({
    defaults: {
        handle: '',
        email: '',
        uuid: '',
        userpic: '',
        tokenlogin: ''
    },
});
4

1 回答 1

2

您应该能够通过覆盖模型的fetch方法来做到这一点:

UserModel = Backbone.model.extend({
  defaults: {
    // ....
  },

  // set url for model (assumes app root is http://localhost/app)
  url: '/api/User.php',

  // pass custom parameters on fetch
  fetch: function (options) {
    var options = _.clone(options);

    // set our custom parameters
    options.req = "REQUSERSIGNIN";
    options.platform = "WEB";
    options.useremail = $('#userSignIn #userEmail').val();
    options.userpass = $('#userSignIn #userPassword').val();

    // call the Backbone method, which in turn calls $.ajax
    Backbone.sync.apply(this, options);
  },
});

您的模型的 Parse 方法应该可以很好地处理来自服务器的响应,因为它似乎是一对一的(response.handle 将匹配 model.attributes.handle)。没有看到实际的反应,很难知道。

于 2013-09-18T21:52:16.483 回答