我正在android上开发关于alloy(1.2.2)的移动应用程序:settings.xml
<Alloy>
<View id="settings">
<ListItem id="settingsListView">
<ListSection id="settingsListSection" headerTitle="My Settings">
</ListSection>
</ListItem>
</View>
</Alloy>
设置.js
var settingsListData=[
{properties:{title:'Profile'}},
{properties:{title:'Change Password'}},
{properties:{title:'Edit Clouds'}}
];
$.settingsListSection.setItems(settingsListData);
$.settings.open();
它给出了错误 - 对象没有方法“添加”为什么会出现这个错误?感谢任何帮助。