私はobservableArrayを持っています。observableArray からアイテムを削除または追加した後、およびすべての依存サブスクリプション呼び出しが完了した後に、関数を実行したいと考えています。お気に入り :
observableArray.push(newObject);
//I can't put my function call at this point because if any subscription is..
//with newObject or observableArray will execute asynch, and i..
//want my function to execute after all such subscription execution.
ノックアウトでこれを達成する方法はありますか?