我在设计时是新手,我从github下载了完整的源代码网站,当我打开index.html时,它没有在其中加载.js文件。请帮助我,我只是打开了索引。使用chrome和Firefox的html文件
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<base href="/">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>SHOP</title>
<meta name="description" content="Polymer Shop Demo">
<link rel="shortcut icon" sizes="32x32" href="images/shop-icon-32.png">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@Polymer">
<meta property="og:type" content="website">
<meta property="og:site_name" content="SHOP">
<meta name="theme-color" content="#fff">
<link rel="manifest" href="manifest.json">
<style>
body {
margin: 0;
font-family: 'Roboto', 'Noto', sans-serif;
font-size: 13px;
line-height: 1.5;
min-height: 100vh;
}
/* styling for render while resources are loading */
shop-app[unresolved] {
display: block;
min-height: 101vh;
line-height: 68px;
text-align: center;
font-size: 16px;
font-weight: 600;
letter-spacing: 0.3em;
color: #202020;
padding: 0 16px;
overflow: visible;
}
</style>
</head>
<body>
<shop-app unresolved>SHOP</shop-app>
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script type="module" src="src/shop-app.js"></script>
<script>
window.performance && performance.mark && performance.mark('index.html');
</script>
</body>
</html>
答案 0 :(得分:1)
似乎您需要webcomponents-loader.js
文件。如果您不是使用node.js实现的(您可以here学到它),则需要自己找到该文件或安装node.js。
以下说明不会帮助您了解其工作原理。我强烈建议您在遵循这些说明之前,观看上面的视频链接以了解node.js。
如果您的计算机上有一个包含HTML和JS文件的文件夹(以及计算机上的node.js),则可以在计算机上打开一个终端,然后导航到终端中的该文件夹(cd folder_name等)。 ,然后运行npm init
或sudo npm init
(以可行方式为准)。
然后要保留该文件,您将需要运行npm i webcomponents.js
以安装webcomponents.js
。然后,如果在代码编辑器中打开包含HTML和JS文件的文件夹,则应该可以看到名为node_modules的文件夹。
在该文件夹中,您可以找到webcomponentsjs
,在该文件夹下有webcomponents-loader.js
。您可以复制该文件并将其粘贴到主JavaScript文件所在的位置。然后将脚本代码更改为<script src="src/webcomponents-loader.js"></script>
答案 1 :(得分:0)
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
这部分说您需要安装node.js和npm并运行它。我建议您搜索“ npm”是什么。