我的应用程序类中有以下代码:
switchMainView: function (newView, config) {
if (this.currentView != false) {
Ext.Viewport.remove(this.currentView);
}
this.currentView = Ext.create(newView, config);
Ext.Viewport.animateActiveItem(this.currentView, { type: 'slide', direction: 'right' })
},
可以从任何控制器调用。但是,它没有显示动画。有什么想法有什么问题吗?