我正在使用knockout-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 });
}
我知道我問是有點怪,但我想知道有沒有辦法做到這一點?
簡答題:不,你想達到什麼目的,也許有不同的方法來解決它,而不是黑客搗蛋? – nemesv 2013-03-08 08:01:04
我認爲你只需要訂閱模型。 – Ohgodwhy 2013-03-08 08:02:15
yaa訂閱是好點,但我想使用油門擴展器,我們可以在訂閱中使用它嗎?因爲我不想得到我可觀察到的實時變化 – gaurav 2013-03-08 08:03:39