es6 模块化-export语法

Posted 天行子

tags:

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

模块化-export语法

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>模块化-export语法</title>

</head>
<body>


<script type="module">
    //m1.js文件
    //1单个export
    // export let name = \'m1\';
    //
    // export function add(x, y) {
    //     return x + y;
    // }

    //使用
    // import * as m1 from \'./m1.js\';
    // console.log(m1.name);
    // console.log(m1.add(3,5));


    //2 export {}
    // let name = \'M2\';
    //
    // function add(x, y) {
    //     return x + y;
    // }
    //
    // export {name, add}

    //使用
    // import * as m1 from \'./m1.js\';
    // console.log(m1.name);
    // console.log(m1.add(3,5));

    //3 export default
    // export default {
    //     name: \'M2\',
    //     add:function(x, y) {
    //         return x + y;
    //     }
    // }
    //
    // //使用
    // import * as m1 from \'./m1.js\';
    // console.log(m1.default.name);
    // console.log(m1.default.add(3,5));
    import * as m1 from \'./m1.js\';
    console.log(m1.default.name);
    console.log(m1.default.add(3,5));

</script>
</body>
</html>

以上是关于es6 模块化-export语法的主要内容,如果未能解决你的问题,请参考以下文章

ES6 module export options 模块导出导入语法

es6 Module语法

ES6中export与export default的区别

commonjs 与 ES6 模块化

ES6新特性:使用export和import实现模块化

export和import实现模块化