数据绑定到嵌套视图

时间:2013-12-30 17:54:16

标签: titanium appcelerator titanium-mobile backbone-views titanium-alloy

我认为最好用一个例子来解释。假设我想显示每个动作下方有演员的电影列表。 例如:

Movie A
 - Actor 1
 - Actor 2
Movie B
 - Actor 4
 - Actor 5 
 - etc.

JSON文件如下所示:

{   movies: [
        {   movie_name: "Movie A",
            actors: [
                { actor_name: "Actor 1" },
                { actor_name: "Actor 2" }
            ]
        },
        {   movie_name: "Movie B",
            actors: [
                { actor_name: "Actor 4" },
                { actor_name: "Actor 5" },
            ]
        }   
    ]
}

观点:

<TableView dataCollection="movies">
  <TableViewRow>
    <Label class="movie_heading" text="{movie_name}"></Label>

    **<Label dataCollection="actors.actor_name ???? ">**

  </TableViewRow>
</TableView>

我不确定如何将actor绑定到视图的第二级。我正在寻找类似ng-repeat的角度,但我似乎无法重新绑定actors.actor_name。任何帮助表示赞赏:)

1 个答案:

答案 0 :(得分:1)

非常确定您目前无法在加速器中执行此操作。