我有两个链接在一起的计算可观察量。我遇到的问题似乎与我的observable没有以正确的顺序更新这一事实有关(先发生了计算然后检查),这可能会破坏我的应用程序。
vm = function() {
var self = this;
this.check = ko.computed(function() {
// does some checking return true if no problem false otherwise
};
this.compute = ko.computed(function() {
if (self.check())
// does computation
}
};
有没有办法强制执行评估订单?