私はサンプルアプリケーションをChromeとFirefoxの両方で動作させたいので、https://www.webcomponents.org/polyfills/で説明したように、Webコンポーネントをポリフィルすることを試みています。しかし、私はReferenceErrorを取得しています:customElementsは定義されていません Firefoxでエラーが発生しました。下記の私のコードをindex.htmlでご覧ください。WebコンポーネントPolyfillが動作しない
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="robots" content="index, follow">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Sample</title>
<link rel="stylesheet" href="css/site.css">
<!-- Components -->
<link rel="import" href="components/global/site-navigation.html">
</head>
<body>
<script>
(function() {
if ('registerElement' in document
&& 'import' in document.createElement('link')
&& 'content' in document.createElement('template')) {
// platform is good!
} else {
// polyfill the platform!
var e = document.createElement('script');
e.src = 'js/webcomponents.js';
document.body.appendChild(e);
}
})();
</script>
<site-navigation></site-navigation>
</body>
</html>
何が欠けていますか?
PS:すべてはChromeで正常に動作します(と/ポリフィルなし)
私はあなたがあなたのコンポーネントが含まれ_before_あなたのポリフィルローダコードを配置する必要があると思います。 – Intervalia
どのバージョンのwebcomponents polyfillを使用しますか? – Supersharp
私はこれを次の行で見ることができます:10 of webcomponents.js // @version 0.7.24 –