如何有条件地导入ES6模块?
2022-08-30 00:07:43
如果您愿意,可以使用“需要”。这是一种具有条件要求语句的方法。
let something = null;
let other = null;
if (condition) {
something = require('something');
other = require('something').other;
}
if (something && other) {
something.doStuff();
other.doOtherStuff();
}