使用ES6语法动态导入JavaScript模块?

参见英文答案 > ES6 variable import name in node.js?                                    9个
是ES2015,我该如何动态导入模块?

例如.代替…

import {SomeClass} from 'lib/whatever/some-class';

我不知道运行时的路径,所以我希望将路径存储在变量中,并且我想从该模块导入特定的东西:

function doDynamicStuff(path) {
    let importedThing = ...; //import * as importedThing from path;
    let thingIReallyWant = importedThing.someExportedVariable;

    ...
}

我不确定使用什么语法,或者根本不可能这样做.我尝试使用let importedThing = require(path);但是我们没有使用RequireJS.

最佳答案
ES2015不支持按设计进行动态导入.

In current JavaScript module systems,you have to execute the code in order to find out what the imports and exports are. That is the main reason why ECMAScript 6 breaks with those systems: by building the module system into the language,you can syntactically enforce a static module structure.

A module’s structure being static means that you can determine imports and exports at compile time (statically) – you only have to look at the source code,you don’t have to execute it.

ECMAScript 6 modules: the final syntax

要动态导入模块,您必须明确使用模块加载器(如RequireJS或SystemJS)

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ "TOC" 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...