Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
启动我的应用程序后,有一个命令:
var currentView = dojox.mobile.View.getShowingView();
我“需要”dojox.mobile.View 但 currentView 从不显示 currentView,它在上述命令处停止。我正在使用道场 1.8.3。出了什么问题或我如何才能获得当前视图?
问候汤姆
您必须引用页面中的视图并调用该视图上的方法。
例如:我知道我的视图 ID 之一是“mainView”。
registry.byId("mainView").getShowingView().performTransition("mainView", -1, "slide");
registry.byId 将搜索主视图。在该视图上,您可以执行 .getShowingView()。这会在同级视图中搜索当前可见的视图。
例如,在该视图上,您可以向 mainView 添加过渡,例如“返回首页”功能。