1

此演示中的以下代码适用于我的应用程序

https://saulis.github.io/iron-data-table/demo/index.html
<template is="dom-bind">
  <iron-ajax
      url="https://saulis.github.io/iron-data-table/demo/users.json"
      last-response="{{users}}"
      auto>
  </iron-ajax>
  <iron-data-table id="items"
                   selection-enabled 
                   items="[[users.results]]">
    <data-table-column name="Picture" width="50px" flex="0">
      <template>
        <img src="[[item.user.picture.thumbnail]]">
      </template>
    </data-table-column>
    <data-table-column name="First Name">
      <template>[[item.user.name.first]]</template>
    </data-table-column>
    <data-table-column name="Last Name">
      <template>[[item.user.name.last]]</template>
    </data-table-column>
    <data-table-column name="Email">
      <template>[[item.user.email]]</template>
    </data-table-column>
  </iron-data-table>
</template>

但是当我将数据源从iron-ajax调用更改为内部数据绑定{{items}}时,它不起作用。

项目列表.html
<template is="dom-bind">
  <iron-data-table id="items"
                   selection-enabled
                   data-source="[[items]]">
    <data-table-column name="Comment" width="50px" flex="0">
      <template>[[item.comment]]</template>
    </data-table-column>
    <data-table-column name="Total">
      <template>[[item.total]]</template>
    </data-table-column>
    <data-table-column name="Merchant">
      <template>[[item.merchant]]</template>
    </data-table-column>
  </iron-data-table>
</template>

我希望表格中填充数据。相反,表和列标题呈现,但数据不填充表。

几点:我正在使用 Firebase 来存储数据。以及polymerfire/firebase-query要获取数据的元素(在所示元素的父数据绑定元素中){{items}}

我应该朝哪个方向尝试解决这个问题?

编辑

以下描述了我为items变量设置的方式和内容:

我的 Firebase 内部的数据结构如下。

https://console.firebase.google.com/project/my-app/database/data
my-app
 |
 - users
    |
    - userid-123
       |
       - nodeid-abc
       |  |- comment: "foo"
       |  |- merchant: "bar"
       |  |- date: "2016-07-02"
       |  |- total: 123
       - nodeid-xyx
          |- comment: "baz"
          |- merchant: "bat"
          |- date: "2016-07-15"
          |- total: 999

我通过父元素中的Polymerfire 元素将该数据提取到我的应用程序中。firebase-query

概述-page.html
<firebase-query
    id="query"
    app-name="my-app"
    path="/users/[[user.uid]]"
    data="{{items}}">
</firebase-query>
<items-list id="list"
    items="[[items]]"
    filters="[[filters]]">
</items-list>

我知道{{items}}数据正在进入list-items元素,因为我设置了一个按钮来将数据记录到控制台。

项目列表.html
<button on-tap="show">Show</button>
show: function() {
  console.log('items', this.items);
},

当我按下Show按钮时,控制台会记录以下内容:

控制台日志
items
0: Object
   $key: "nodeid-abc"
   comment: "foo"
   merchant: "bar"
   date: "2016-07-02"
   total: 123
1: Object
   $key: "nodeid-xyx"
   comment: "baz"
   merchant: "bat"
   date: "2016-07-15"
   total: 999

有趣的是,当我为工作代码示例记录相同的信息时:

show: function(){
  console.log('users', this.users);
}

我得到:

控制台日志
users undefined

去搞清楚。显然,有些事情我不明白。看起来{{items}}数据绑定在iron-data-table渲染之后注册,并且由于某种原因,数据绑定iron-data-table在它在iron-list元素中注册之后没有更新。

编辑2

这是元素的完整dom-module定义。items-list

<link rel="import" href="../bower_components/polymer/polymer.html">
<link rel="import" href="../bower_components/iron-data-table/iron-data-table.html">
<link rel="import" href="../bower_components/iron-data-table/default-styles.html">

<dom-module id="items-list">
  <template>
    <button on-tap="show">Show</button>
    <template is="dom-bind">
      <iron-data-table items="[[items]]">
        <data-table-column name="Comment">
          <template>[[item.comment]]</template>
        </data-table-column>
        <data-table-column name="Merchant">
          <template>[[item.merchant]]</template>
        </data-table-column>
      </iron-data-table>
    </template>
  </template>
  <script>
    (function() {
      'use strict';
      Polymer({
        is: 'items-list',
        properties: {
          items: {
            type: Array,
            notify: true,
          },
        },
        show: function() {
          console.log('items', this.items);
        },
      });
    })();
  </script>
</dom-module>

4

1 回答 1

2

您需要删除额外的<template is="dom-bind">元素,它将其封装<iron-data-table>在单独的绑定范围中。dom-bind不需要,因为您有一个绑定范围dom-module

我假设您从演示示例中复制了这些dom-bind元素,因为没有围绕<iron-data-table>. 您可以在此处查看更多信息:https ://www.polymer-project.org/1.0/docs/devguide/templates#dom-bind

于 2016-07-28T06:39:42.350 回答