Custom Element类:this.getAttribute(' data - *')返回null

时间:2017-03-10 13:47:58

标签: javascript shadow-dom custom-element

我有副本&粘贴到Mozzila示例中的代码 https://developer.mozilla.org/en-US/docs/Web/Web_Components/Custom_Elements#Observed_attributes 我的计算机上的文件,当我运行它时,我从每次调用this.getAttribute时得到null。 我看到它在上面的链接上工作但是当我运行我复制的项目时,它是null,在我编写的另一个项目中发生了同样的事情,基于这个例子:

HTML文件:

If nothing appeared below, then your browser does not support Custom Elements yet.
<x-product data-name="Ruby" data-img="https://s3-us-west-2.amazonaws.com/s.cdpn.io/4621/ruby.png" data-url="http://example.com/1"></x-product>
<x-product data-name="JavaScript" data-img="https://s3-us-west-2.amazonaws.com/s.cdpn.io/4621/javascript.png" data-url="http://example.com/2"></x-product>
<x-product data-name="Python" data-img="https://s3-us-west-2.amazonaws.com/s.cdpn.io/4621/python.png" data-url="http://example.com/3"></x-product>

JS档案:

// Create a class for the element
class XProduct extends HTMLElement {
  constructor() {
    // Always call super first in constructor
    super();

    // Create a shadow root
    var shadow = this.attachShadow({mode: 'open'});

    // Create a standard img element and set it's attributes.
    var img = document.createElement('img');
    img.alt = this.getAttribute('data-name');
    img.src = this.getAttribute('data-img');
    img.width = '150';
    img.height = '150';
    img.className = 'product-img';

    // Add the image to the shadow root.
    shadow.appendChild(img);

    // Add an event listener to the image.
    img.addEventListener('click', () => {
      window.location = this.getAttribute('data-url');
    });

    // Create a link to the product.
    var link = document.createElement('a');
    link.innerText = this.getAttribute('data-name');
    link.href = this.getAttribute('data-url');
    link.className = 'product-name';

    // Add the link to the shadow root.
    shadow.appendChild(link);
  }
}

// Define the new element
customElements.define('x-product', XProduct);

2 个答案:

答案 0 :(得分:11)

您应该在this.getAttribute()方法中使用connectedCallback(),因为在调用constructor()方法时,可能尚未定义属性。

在这种情况下,只要解析constructor() <x-product>,其属性尚未附加,就会调用customElement.define()

注意如果您在 html代码<x-product data-...>之后放置<x-product>语句,它仍可以正常工作。这是因为当标记定义为自定义元素时,属性已附加到1) NSStringFromCGPoint, 2) NSStringFromCGSize, 3) NSStringFromCGRect, 4) NSStringFromCGAffineTransform, 5) NSStringFromUIEdgeInsets, 元素。

请查看this question了解更多详情。

答案 1 :(得分:1)

我也遇到过这个问题,当从构造函数中调用 getAttribute 时返回 null。我注意到在示例 index file 中,标记具有 defer 属性。将 defer 属性添加到脚本标记后,构造函数中的 getAttribute 调用就开始工作了。