gpt4 book ai didi

JavaScript:我无法导入任何东西

转载 作者:行者123 更新时间:2023-12-01 16:18:35 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





importing a package in ES6: "Failed to resolve module specifier "vue""

(3 个回答)


2年前关闭。




如何在我的代码中导入 lit-html?
我有这个代码:
index.js文件在 js文件夹:

import { html } from "lit-html";
myDiv = html`
<div>
<a href="">Hello, Click Me!</a>
</div>
`;
document.body.innerHTML += myDiv;

index.html文件:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>JS Tests</title>
</head>
<body>
<script type="module" src="js/index.js"></script>
</body>
</html>

我收到这样的错误:
Uncaught TypeError: Failed to resolve module specifier "lit-html". Relative references must start with either "/", "./", or "../".

最佳答案

你可以试试

import {render, html } from "https://unpkg.com/lit-html@0.7.1/lit-html.js"

HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>JS Tests</title>
</head>
<body>
<script type="module" src="js/index.js"></script>
</body>
</html>

JS
import {render, html } from "https://unpkg.com/lit-html@0.7.1/lit-html.js";
const myDiv = html`
<div>
<a href="">Hello, Click Me!</a>
</div>
`;

render(myDiv,document.body);

请注意,如果您在浏览器上使用模块(如上),每次导入都会进行网络调用。在将代码发布到浏览器之前,您可以使用一些模块捆绑器(例如 webpack)来构建单个 JS 文件(包含所有依赖项)。

关于JavaScript:我无法导入任何东西,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58522506/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com