ステートマシンがあり、currentViewBindingを使用して新しい状態に入るたびに、新しいcurrentViewBindingを使用してcontainerView全体の一部をスワップアウトしています。
index: Ember.State.create({
enter: function(manager) {
App.get('appController').set('feedView', Ember.View.create({
templateName: 'dashboard_feed',
contentBinding: 'App.feedController.content',
controller: App.get('App.feedController')
}));
}
})
現時点では、これらのビューのレンダリングは非常に遅いです。ビューをメモリに保持し、状態に入るたびに再レンダリングを回避する方法はありますか?