我正在使用 AlloySliderMenu 小部件使用 Titanium SDK 3 构建应用程序。
这个小部件创建了一个类似于 Facebook 应用程序的滑块菜单。听起来它很容易使用,但我面临以下问题。
在 index.xml 中,我需要小部件。
在应用程序的 index.js 中,我有以下代码:
currentView = Alloy.createController('list').getView();
//ds is the slider menu id
//contentview in the main panel of the menu
$.ds.contentview.add(currentView);
这将在应用程序的主窗口中打开我的“列表”视图。
问题是,在我的 list.js 控制器中,我有一个函数应该在按钮的单击操作上将 $.ds.contentview 内容更改为另一个视图。但我无法从列表容器访问 $.ds.contentview 并使用此对象。
我已经尝试过 Alloy.createWidget 等。但没办法,它不起作用。