简体   繁体   English

更改铁列表中现有项目的绑定属性的值

[英]Change the value of a bound property on an existing item in iron-list

I have an item bound in my iron-list , when I change a bound property on the object I am expecting to see the change reflected on the screen, but I don't. 我在iron-list绑定了一个项目,当我更改对象的绑定属性时,我希望看到更改反映在屏幕上,但是我没有。 What am doing wrong? 怎么了?

https://jsfiddle.net/ckqL3a3o/3/ https://jsfiddle.net/ckqL3a3o/3/

<link rel="import" href="https://cdn.rawgit.com/Download/polymer-cdn/1.2.3.2/lib/polymer/polymer.html">
<link rel="import" href="https://cdn.rawgit.com/Download/polymer-cdn/1.2.3.2/lib/iron-list/iron-list.html">
<script src="https://google.github.io/traceur-compiler/bin/traceur.js"></script>
<script src="https://google.github.io/traceur-compiler/bin/BrowserSystem.js"></script>
<script src="https://google.github.io/traceur-compiler/src/bootstrap.js"></script>
<template is="dom-bind" id="app">
  <div style="width: 500px; height: 300px; background: #eee; overflow: auto; float:left">
    <iron-list items="{{data}}" as="item" style="width: 500px; height: 300px;">
      <template>
        <p><span>{{item.name}}</span> <span>{{item.value}}</span></p>
      </template>
    </iron-list>
  </div>
</template>
<script type="module">
    'use strict';

    var app = document.querySelector('#app');
        app.data = [{ name: 'item', value: 3 }];

    setTimeout(() => app.data[0].value = 4, 2000);
</script>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM