這是我的文件夾結(jié)構(gòu):這些是我的文件:/* index.html */<body> <h1>Modules</h1> <script type="module" src="./index.js"></script></body>// index.jsimport fruits from "./fruits";console.log(fruits);// fruits.jsconst arr = ["Mango", "Appple", "Banana", "Guava"];export default arr;對我來說一切看起來都很好,但我仍然收到錯誤:net::ERR_ABORTED 404 (Not Found)。
如何在瀏覽器中使用 ES 模塊?
DIEA
2023-06-29 22:40:21