它给了我一个未确定的标签错误,id =“somethinggooood” 但是如果我在ListView之外创建Label,它可以毫无问题地访问它
是否有解决方法或其他任何方法来修复它?
Alloy.XML
<ListView id="userList"
defaultItemTemplate="user"
onItemclick="userProfile" >
<Templates >
<ItemTemplate bindId="user" name="user" >
<View backgroundColor="red" layout="vertical">
<Label bindId="name" />
<Label bindId="title" id="somethinggooood" />
//THIS IS WHAT I'D LIKE TO ACCESS
<ImageView id="goodb" bindId="img" />
</View>
</ItemTemplate>
</Templates>
<ListSection id="section" dataCollection="users" >
<ListItem template="user"
user:id="{id}"
img:image="{author_img}"
name:text="{adresse}"
title:text="{title}" />
</ListSection>
</ListView>
JS
function goodfff(){
alert($.somethinggooood.text);
};
答案 0 :(得分:0)
列表视图中的任何项目都无法通过ID访问,因为它的加载方式。您可以通过获取行本身从ListView获取数据,然后您将获得您以前使用的数据设置视图。
即使无法动态更改,您也需要重新创建项目并使用新数据更新项目。