ノックアウト 2.2.0.js を使用しています。私は次のモデルを持っています:
function Person(name, age, city)
{
this.Name = ko.observable(name);
this.Age = ko.observable(age);
this.City = ko.observable(city);
ko.computed(function(){
//Is there any way to execute this section whenever Name, Age, City any
//of this observable changes without including this.Name, this.Age and
//this.City inside it
}, this).extend({ throttle: 500 });
}
私が求めていることは少し奇妙であることは知っていますが、これを行う方法はありますか?