1

当我在这个 JSbin 中运行我的代码时,我希望它能够以类似于它在这个演示页面上iron-data-table的方式呈现填充数据。相反,只有表格标题呈现,但其余单元格无法填充。

可以对 JSbin 进行哪些更改以实现所需的行为?

http://jsbin.com/hepebapori/1/edit?html,控制台,输出
<!DOCTYPE html>
<html>  
  <head>
    <base href="https://polygit.org/polymer+:master/components/">
    <link rel="import" href="polymer/polymer.html">

    <script src="webcomponentsjs/webcomponents-lite.min.js"></script>

    <link rel="import" href="iron-ajax/iron-ajax.html">
    <link rel="import" href="paper-button/paper-button.html">

    <link href="https://rawgit.com/saulis/iron-data-table/master/iron-data-table.html" rel="import">

  </head>
  <body>
    <dom-module id="x-foo">
      <template>
        <style>
        </style>
        <paper-button on-tap="msg">Click Me</paper-button>

        <iron-ajax auto
          url="https://saulis.github.io/iron-data-table/demo/users.json" 
          last-response="{{users}}"
          >
        </iron-ajax>
        <iron-data-table 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>
      <script>
        (function(){
          'use strict';
          Polymer({
            is: 'x-foo',
            msg: function() {
              console.log('This proves Polymer is working!');
            },
          });
        })();
      </script>
    </dom-module>
    <x-foo></x-foo>
  </body>
</html>
4

2 回答 2

1

您的问题是iron-data-table. 仅仅使用 rawgit 不会有魔力,因为您需要使用代理服务器(例如polygit)来使 web 组件工作(您已经像这样加载 Polymer,但不是iron-data-table)。

由于文档平庸,我花了一段时间才弄清楚如何将聚合物导入与iron-data-table.

需要的两个配置是polymer+:masteriron-data-table+Saulis+:master

结合起来,您的base标签如下所示:

<base href="https://polygit.org/polymer+:master/iron-data-table+Saulis+:master/components/">

有了这个,您可以像其他元素一样导入元素:

<link rel="import" href="iron-data-table/iron-data-table.html">

工作 JSbin(在 Google Chrome 中测试)

于 2016-07-31T09:55:23.517 回答
0

要开始在您的项目中使用 iron-data-table,您必须:

  1. 下载包:
bower i iron-data-table -S

bower install --save PolymerElements/iron-ajax
  1. 创建引用这些包的 html 文件:
<html>
<head>
    <title></title>
  <meta charset="utf-8" />
    <link rel="import" href="bower_components/polymer/polymer.html">
    <link rel="import" href="bower_components/iron-ajax/iron-ajax.html" />
    <link rel="import" href="bower_components/iron-data-table/iron-data-table.html">
</head>
<body>
    <template is="dom-bind">
        <iron-ajax url="data.json" last-response="{{data}}" auto></iron-ajax>
        <iron-data-table items="[[data]]">
            <data-table-column name="First Name">
                <template>
                    [[item.name.first]]
                </template>
            </data-table-column>
            <data-table-column name="Last Name">
                <template>
                    [[item.name.last]]
                </template>
            </data-table-column>
        </iron-data-table>
    </template>
</body>
</html>
  1. 在 html 文件所在的位置创建 data.json 文件:
[
  {"name": {
    "title": "miss",
    "first": "donna",
    "last": "davis"
  }},
  {
    "name": {
      "title": "mr",
      "first": "samuel",
      "last": "kelley"
    }
  },
  {"name": {
    "title": "ms",
    "first": "katie",
    "last": "butler"
  }}
]
于 2016-09-06T10:09:08.513 回答