我正在尝试通过我的视图中的“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: ''
},
});