gpt4 book ai didi

javascript - 未捕获的语法错误 : The requested module './add.js' does not provide an export named 'add'

转载 作者:行者123 更新时间:2023-11-29 16:32:30 25 4
gpt4 key购买 nike

我正在尝试学习 ES6 导入和导出,但我遇到了一个错误,不允许我导入我的模块。我也试过 import .. from 'add.js' 没有 ./但还是不行。

Uncaught SyntaxError: The requested module './add.js' does not provide an export named 'add'

我的文件夹结构是这样的

C:\xampp\htdocs\es6\import.export\
- index.html
- app.js
- add.js

index.html

<html>
<head>
<script type="module" src="app.js"></script>
</head>

<body>

</body>
</html>

app.js

import { add } from './add.js'

console.log(add(2,3))

add.js

export default function add (a, b) {
// export default function (a, b) { <-- does not work either, same error
return a + b;
}

最佳答案

选项 1

命名您的导出而不是使用默认。它应该是这样的

// add.js
export const add = (a, b) => a + b;
// OR
// export const add = function(a, b) { return a+b };

// app.js
import { add } from './add';

选项 2

使用export default 语法。看起来像这样

// add.js
export default function add(a, b) {
return a + b;
}

// app.js
import add from './add';

关于javascript - 未捕获的语法错误 : The requested module './add.js' does not provide an export named 'add' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54590951/

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