在我当前的应用程序中,我的save一个主干视图中有一个功能。
custom_save : function() {
// this method's save code
// have to call another views save function here
}
另一个视图名称是App.SettingsView,它有一个save方法。我必须在逻辑save之后立即调用此方法。custom_save如何App.SettingsView save在函数内部调用custom_save函数。请不要两者都是2个不同的文件
谢谢