集合嵌套模型TableView(Appcelerator合金)

时间:2013-10-02 14:52:15

标签: mobile backbone.js titanium appcelerator titanium-alloy

我想知道是否可以在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>

1 个答案:

答案 0 :(得分:0)

这个问题在appcelerator开发者网站上得到了解答: http://developer.appcelerator.com/question/157945/collection-nested-model-list-alloy

As:现在不能通过绑定来做到这一点,你必须在控制器中手动完成。但是,最近通过提出使用骨干关联库来回答类似的StackOverflow问题: https://stackoverflow.com/a/18022416/1867622