1

模块化管路工具

一个js文件就是一个模块。

创建两个js文件和一个html文件,html文件用来打印。

  • 导入,导出:

    html文件:
     <script src="jspm_packages/system.js"></script>
     <script src="config.js"></script>
       <script>
           System.import('js/main.js');
      </script>
首先引入三个js文件。

需要导出的js文件:student.js
let name = "shitu91";
function seyHellow(){
    console.log("hellow es6");
}

class Person{
    constructor (name,age){
        this.name=name;
        this.age=age;
    }
    run(){
        console.log("我会跑");
    }
}
export {name,seyHellow,Person};
//export:导出;

需要导入的js文件:main.js
import {name,seyHellow,Person} from './student';

console.log(name);//打印shitu91。
seyHellow();//输出hellow es6。

let xs = new Person("宋泽",21);
xs.run();//输出我会跑。

songze
211 声望13 粉丝

该来的总会来,该走的不挽留!