一个函数收集在运行时导出的其他函数:
const list = getFunctions();
其中const list
是包含函数的对象:
{
f1: function1,
f2: function2,
f3: function3
}
然后我导出函数对象:
export { list };
将其中一个函数导入另一个文件:
import { f1 } from './functionsList';
但f1
未定义。
答案 0 :(得分:0)
我使用了module.exports的解决方法:
module.exports = list;
哪个适用于import { f1 }