1
我有一個有四個輸入字段的表單。當用戶界面更新時,我需要更新res(3)。意思是更新的可能是四個中的任何一個。淘汰賽訂閱觀察所需?
myViewModel.four.subscribe(function(newValue) {
//update one here
//update two here
//update three here
});
等等.....
myViewModel.one.subscribe(function(newValue) {
//update two here
//update three here
//update four here
});
但我要如何更新方法裏面的人?對我來說,它看起來像是堆棧溢出情況...
其他字段是否使用相同的值更新? – Dan