我可能遗漏了一些非常基本的东西。我有一个对象数组。该数组是我的聚合物元素属性的子元素,实现如下:
properties:
audit:
type: Object
value: ()->
return {new: [], update: []}
notify: true
我希望使用dom-repeat迭代audit.new
。
我是这样做的:
<template is="dom-repeat" items="{{audit.new}}" as="item">
<div class="horizontal layout center" style="padding-bottom: 0.5em">
<div><paper-checkbox checked="{{item.select}}" style="margin: 0px"></paper-checkbox></div>
<div class="flex">
<b><span>{{item.firstName}}</span>, <span>{{item.lastName}}</span></b> (<span>{{item.id}}</span>)
</div>
</div>
</template>
聚合物根本不呈现任何东西。
我已经检查并确认我正在迭代的数组包含正确的数据。我做错了什么?