Failed to execute 'createElement' on 'Document': The result must not have children

为君一笑 提交于 2019-11-28 02:39:58

问题


I've been using custom elements v1 for a while now via a polyfill. Chrome 54 (the first version with a native v1 implementation) started throwing errors when initializing my elements:

DOMException: Failed to execute 'createElement' on 'Document': The result must not have children

The offending line is a simple:

let el = document.createElement('my-custom-element');

回答1:


Chrome's native implementation appears to be enforcing specification requirements that the polyfill was not. According to the "Requirements for custom element constructors" section of the spec:

The element must not gain any attributes or children, as this violates the expectations of consumers who use the createElement or createElementNS methods.

The element that I was attempting to create added children to itself in its constructor.

The solution was to follow the recommendations of the spec:

In general, work should be deferred to connectedCallback as much as possible—especially work involving fetching resources or rendering. However, note that connectedCallback can be called more than once, so any initialization work that is truly one-time will need a guard to prevent it from running twice.

That is, add children in the connected callback and use a flag to ensure the element is only initialized on first connection.



来源:https://stackoverflow.com/questions/40181683/failed-to-execute-createelement-on-document-the-result-must-not-have-childr

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!