我对聚合物中数组的数据绑定非常困惑,我认为这是一个非常简单的用例。
我有一个元素,数组作为属性,我想显示数组中每个项目的子元素列表。
<dom-module id="parent-element">
<template>
<h1>This is the parent!</h1>
<template is="dom-repeat" items="{{arrayproperty}}" as="item">
<child-element
propertyone="{{item.propertyone}}"
propertytwo="{{item.propertytwo}}">
</child-element>
</template>
</template>
</dom-module>
此代码效果很好。创建适当数量的子元素,并将数组中的属性传递给子元素。但是,更改子元素属性时,这些更改不会传递回父元素数组属性。如何使用双向绑定配置此设置,以便父级从子元素获取更新?