0
我想發送數據到另一個挖空視圖模型。 例如,用戶轉到包含項目列表的頁面。然後每個項目都有一個鏈接。如果用戶點擊鏈接,則下一頁將具有該值。列表項目編號爲3下一頁將有3個爲價值..如何發送數據到另一個淘汰賽模型?
我TREID這一點,但未能
methods.initialize = function() {
var self = this;
self.setupSubscriptions();
self.update(true);
Utils.ajaxPost('getMyOrganizations',{"data":""},function(result){
result = JSON.parse(result);
if(_.isArray(result)){
_.each(result,function(obj){
self.organizations.push([obj["organization_name"],3,3,obj['id']]);
});
}
});
};
methods.setupSubscriptions = function() {
var self = this;
self.update.syncWith('selectedOrg',true);
};
和其他模型,
methods.initialize = function() {
var self = this;
self.setupSubscriptions();
};
methods.setupSubscriptions = function() {
var self = this;
self.update.subscribeTo('selectedOrg', function(newUser){
if(newUser){
//Do the logic here
self.update = true;
}
});
};