我有一个订阅功能,它在下拉值更改时触发。我想更新此订阅函数中的另一个可观察值。问题是当控件离开此订阅函数时,可观察值变为空或为空。
self.selectedSubAccount.subscribe(function (newValue) {
//alert("The Selected Account Code:" + newValue);
var likeCode = newValue.substring(0, 2);
var accType = "Control";
self.ACCOUNT_CODE = GenrateAccountCode(self.SUBACCOUNTS(), likeCode, accType);
});