在一个名为File_A.js
I 的文件中,有一个包含常量的函数。我想导出这个常量,并且只有这个常量(而不是整个函数),以便在另一个名为File_B.js
. 我尝试使用module.exports
但它返回该变量未定义。下面是一个简化的示例。谢谢
// my function in File_A.js
const MyFunctionA = () => {
const myVariable = 'hello'
module.export = {myVariable: myVariable}
return (
/*...*/
);
}
// my second function in File_B.js
const MyFunctionB = () => {
const {myVariable} = require('./File_A.js');
console.log(myVariable) // undefined
return(
/*...*/
);
}
哔哔one
相关分类