import 和 export -- ES6

Posted Hello World

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了import 和 export -- ES6相关的知识,希望对你有一定的参考价值。

例子:

最后返回的结果是:

{
    default: function fn2(){

    },
    foo2: 1,
    test3: {
        default: function fn3(){

        },
        foo3: 1
    }
}

 

// app.js
// import json from ‘./1.json‘;
import * as all from ‘./test2‘;
import fn2 from ‘./test2‘;

console.log(all);
console.log(all.default === fn2); // true
console.log(fn2);



// test2.js
function fn2(){
    console.log(1);
}

export default fn2;
var foo2 = 1;
export {foo2};
export * as test3 from ‘./test3‘;

// test3.js
function fn3(){
    console.log(1);
}

var foo3 = 1;
export {foo3};

export default fn3;

 

以上是关于import 和 export -- ES6的主要内容,如果未能解决你的问题,请参考以下文章

ES6新特性:模块化(import 和 export)

ES6导入导出import | export | export default-使用案例

ES6导入导出import | export | export default-使用案例

ES6模块的import和export用法总结

尝试在 Rails 4 中使用 sprockets-es6 使用 'import' 和 'export' es6

es6 module export 和 import写法注意点