我正在尝试使这种方法起作用:
that.model.save(null, // I'm calling that.model because this is nested in another method
{
url: 'some url',
success: function(model, response) {
// update stuff
},
error: function(model, response) {
// throw error.
}
});
但由于某种原因,它没有调用成功方法或错误方法。评论在哪里我正在调用方法...我不想深入了解我正在调用的所有方法的细节。save 方法也有效,它只是不调用这些方法的食者。
另外,如果我尝试调用我已经做过的方法,例如:
success: that.somemethod()
javascript 抛出:未捕获的类型错误:非法调用
任何帮助将不胜感激。