gpt4 book ai didi

javascript - 在 React 应用程序中使用导出时出错 - Uncaught ReferenceError : exports is not defined

转载 作者:行者123 更新时间:2023-12-02 21:36:40 25 4
gpt4 key购买 nike

我是 React.js 新手,遇到了这个错误。我的项目中的一个文件正在导出一个函数,如下所示:

exports.building = {
//... //Something goes here...
};

我按如下方式导入它:

const building from "./building";

我遇到了以下链接,但无法找到合理的解决方案:

最佳答案

用于导出用途:

export const building = {
//Something goes here...
};

对于导入:

import { building } from "./building";

有关 ES6 中导入的更多信息 here

关于javascript - 在 React 应用程序中使用导出时出错 - Uncaught ReferenceError : exports is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60473931/

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