Polymer 1.0无法访问嵌套<template>元素中的元素

时间:2015-07-30 09:37:19

标签: javascript html polymer web-component

我正在使用Polymer 1.0,我正在构建一个小型手风琴示例。我有精确的手风琴文字数据绑定,我只想在点击它时更改手风琴的图标。

以下是我的代码

<dom-module id="ab-accordion">
  <template>
    <iron-ajax              
      auto
      handle-as="json"
      on-response="handleResponse"
      debounce-duration="300"
      id="ajaxreq"></iron-ajax>

    <template is="dom-repeat" id="accordion" items="{{items}}" as="item">
      <div class="accordion"  on-click="toggleParentAcc">
        <div id="accordion_header" class="accordion__header is-collapsed">
          <i class="icon icon--chevron-down"></i>
          <span>{{item.name}}</span>
        </div>
        <div id="standard_accordion_body" class="accordion__body can-collapse">
          <div class="accordion__content">
            <content id="content"></content>
          </div>
        </div>
      </div>
    </template>
  </template>   
  <script>
    Polymer({
      is: "ab-accordion",
      //Properties for the Element
      properties: {
        accordian: Object,
        childaccordions: Object,
        // Param passed in from the element - Set if the accordion is open by default.
        open: String,
        data: String,
        reqUrl: {
          type: String,
          value: "https://example.com/service.aspx"
        },
      },
      ready: function () {
        this.items = [];
      },
      attached: function () {
        // Run once the element is attached to the DOM.
      },
      toggleParentAcc: function (event) { // Toggle the classes of the accordions
        //This is where I want to toggle the  class
        this.$.accordion_header.classList.toggle('is-collapsed');
        if (typeof event !== 'undefined') {
          event.stopPropagation(); // Stop the click from going up to the parent.
        }
      },
      handleResponse: function (e) {
        this.items = e.detail.response.sports;
      }
    });
  </script>
</dom-module>

基本上在toggleParentAcc函数内部,我想切换ID为accordion_header的div类。但我只是得到undefined或null。

我尝试了以下两行:

this.$.accordion_header // #1
this.$$('#accordion_header') // #2

我如何在dom-repeat中访问该元素?

更新:我甚至无法访问附加功能内部的元素。

attached: function(){
 this.$.accordion_header // This is null?!
 this.$$('#accordion_header'); // this is also null!
} 

4 个答案:

答案 0 :(得分:1)

https://www.polymer-project.org/1.0/docs/devguide/local-dom.html#node-finding

  

注意:使用数据绑定动态创建的节点(包括dom-repeat和dom-if模板中的节点)不会添加到此。$ hash中。哈希仅包含静态创建的本地DOM节点(即元素最外层模板中定义的节点)。

我认为如果您使用Polymer.dom(this.root)代替会更好。另外,我建议您不要在dom-repeat中使用静态ID,因为它们应该是唯一的。改为使用类。

答案 1 :(得分:0)

您可能会遇到事件重定向,这种情况发生在事件&#34;冒泡&#34;他们在DOM树上的方式。 Read this documentation了解详情。

当我遇到这个时,我通过使用类似的东西来解决它:

var bar = Polymer.dom(event).path[2].getAttribute('data-foo');

在我的Polymer()函数中。

要在您的情况下弄清楚,您应该转到控制台并搜索DOM树/事件日志以找到您的目标。如果您无法找到控制台的正确区域,请发表评论,我可能会进一步提供帮助。

答案 2 :(得分:0)

我最终找到了一种方法,无需在嵌套模板中选择元素。

<template id="accord_template" is="dom-repeat" items="{{items}}" as="item">
        <ab-accordion-row id="[[item.id]]" name="[[item.name]]" open="[[item.open]]">
        </ab-accordion-row>
    </template>

ab-accordion是另一个元素,我只是提供数据,然后我可以根据参数更改类。

    <div id="accordion" class="accordion" on-click="toggleAccordion">
        <div  class$="{{getClassAccordionHeader(open)}}">
            <i class="icon icon--chevron-down"></i>
            <span>{{name}}</span>
        </div>
        <div id="standard_accordion_body" class$="{{getClassAccordionChild(open)}}">
            <div class="accordion__content">
                <content></content>
            </div>
        </div>
    </div>

答案 3 :(得分:0)

试试这个。

toggleParentAcc: function (event) { // Toggle the classes of the accordions
    //This is where I want to toggle the  class
    var header = event.target.parentElement;
    Polymer.dom(header).classList.toggle('is-collapsed');
    // rest of your code
  }