我在我的模型上创建了一个名为'post'的函数,我想通过POST请求通过自定义URL向服务器发送请求(下面的示例)。如何在不影响rootUrl发送请求的情况下设置url? TIA!
MyModel = Backbone.Model.extend({
urlRoot: '../mymodel'
initialize: function(){
},
post: function(){
// how put the url here?
// this is the custom url: '../post/mymodel/' + this.model.get('id')
// this is the expected log on server:
// POST: ../post/mymodel/323133
});
答案 0 :(得分:1)
答案 1 :(得分:0)
您可以使用Ajax:
post: function(){
$.post('../post/mymodel/' + this.model.get('id'), function(data) {
$(".result").html(data);
});
}