指定列表中的元素

默认情况下,访问模板 dom-repeat 循环中的单个项目是通过调用 {{item}}。将 as= 属性传递给模板将允许你切换默认的 {{item}} 语法,以便为你正在使用的模块更加自定义。在这种情况下,我们想要获取一个人的名字和姓氏,所以我们将 as="person" 传递给模板。我们现在可以使用 {{person}} 访问这些名称。

<dom-module id="basic-list">
  <template>
    <template is="dom-repeat" items={{list}} as="person">
      <div>{{person.lastName}}, {{person.firstName}}</div>
    </template>
  </template>
</dom-module>