如何在 Backbone js 创建注册表? 并发送 POST 到我的后端, 我不明白在这种情况下收藏的想法 。
~ 强 ~ 强 ~ 强 ~ 强 ~ 强 ~ 强 ~ 强 ~
define([ jQuery , Underscore , Backbone , text!templates/signup.html , models/UserRegistration ],
function($, _, Backbone, signUpTemplate, UserRegistration){
var SignUpView = Backbone.View.extend({
el: $( #screen ),
events: {
submit #frm-signup : signup
},
signup: function(){
// Do something
},
render: function(){
$(this.el).html(_.template(signUpTemplate, {}));
return this;
}
});
return new SignUpView;
});
<强>和模型: 强>
define([ Underscore , Backbone ],
function(_, Backbone){
var UserRegistration = Backbone.Model.extend({
url: /users/reg ,
paramRoot: user ,
defaults: {
fullname : ,
email : ,
password :
}
});
return UserRegistration;
});
下一步会是什么 使它POST到我的 REST 后端服务器?