我想知道是否可以在 Appcelerator Alloy 的集合中包含嵌套模型?
我有一个帖子列表,每个帖子都有嵌套的评论和喜欢模型。我该怎么做呢?
这是我的代码:
<Alloy>
<Collection src="post">
<Window>
<TableView id="table" dataCollection="post">
<TableViewRow class="row">
<Label text="{title}></Label>
****How Do I load list of comments and likes within the collection?****
****{comments}****
****{likes}*****
</TableViewRow>
</TableView>
</Window>
</Alloy>