以下のビューモデルがあります。ビュー モデル 1 には、accountList にレコードを追加するコードもあります。次に、ビューモデル 2 で accountList を使用しようとすると、常に空になります。syncWith はこれら 2 つの observableArray の同期を保つべきではないでしょうか?
ビューモデル 1
define(['knockout', 'text!./eligible.html', 'kendo'
, 'toastr'
, 'Scripts/App/models/m_accountslist'
, 'Scripts/App/constants/cont'
, 'postbox'
], function (ko, eligible, k, toastr, model, cont) {
function eligibleViewModel(params) {
var self = this;
self.accountList = ko.observableArray().syncWith("accountList", true,false)
return self;
}
return { viewModel: eligibleViewModel, template: eligible }
})
モデル 2 を表示
define(['knockout', 'text!./offermodal.html'
, 'toastr'
, 'Scripts/App/models/m_accountslist'
, 'komapping'
, 'Scripts/App/constants/cont'
, 'postbox'], function (ko, offermodal, toastr, model, komapping,cont) {
var offermodalViewModel = function() {
var self = this;
self.accountList = ko.observableArray().syncWith("accountList",true,false)
return self;
}
return { viewModel: offermodalViewModel, template: offermodal }
});