在聚合物1.0中,在自定义元素中导入聚合物按钮会产生错误

时间:2015-07-30 07:12:18

标签: javascript polymer-1.0 paper-elements

我编写了一个简单的Polymer自定义元素,并希望在其中使用paper-button元素。我的代码如下所示:

<link rel="import" href="bower_components/Polymer/polymer.html">
<link rel="import" href="bower_components/paper-button/paper-button.html">

<dom-module id='chart-label'>
  <template is="dom-bind">
    <template is="dom-repeat" items="{{lables}}">
      <input type=checkbox checked="true" id="checkb" value={{item}} name="check" on-change="checkChanged"><b>{{item}}</b>
      </template>
  </template>
  <script>
    Polymer({
      is: 'chart-label',
      buttonStates: [],
      properties: {
        buttonstates: {
          type: Array,
          value: [],
          notify: true,
        },
        lables:Array
      },
      ready: function () {
        for (var i = 0; i < this.lables.length; i++) {
          this.buttonstates.push(true);
        }
      },
      checkChanged: function (e) {
        var it = e.model.item;
        var index = this.lables.indexOf(it);

        console.log(index + " index checked");
        if (e.target.checked) {
          this.buttonstates[index] = true;
        } else {
          this.buttonstates[index] = false;
        }

//      for (var i = 0; i < this.lables.length; i++)  {
//        alert(this.buttonstates[i]);
//      }

        //console.log("this.buttonstates"+this.buttonstates);
        this.fire('checked',this.buttonstates);
      }
    });
  </script>
</dom-module>

当我尝试测试此代码时,它失败并出现以下错误:

  

Uncaught NotSupportedError:无法在'Document'上执行'registerElement':类型'dom-module'的注册失败。具有该名称的类型已经注册。

我在这里缺少什么?

注意我在Polymer 1.0 **上编写此代码

1 个答案:

答案 0 :(得分:0)

我在代码中弄乱了聚合物版本。我在一起构建新应用程序后修复了它。