Javascript ES6中export与import指令使用说明

javascript ES6 支持模块化编程,模块是独立的文件js文件,该文件内部的所有的变量与函数都是局限在该模块内部,外部模块无法访问,如果需要在调用的模块之内使用这些符号,模块内部的变量与函数必须设置为输出。符号的输出是通过export关键字来制定的。

一、export

// tools.js

//输出变量方式1
export var firstName = 'Michael';
export var lastName = 'Jackson';
export var year = 2021;

//输出变量方式2 或者用如下方式输出
var firstName = 'Michael';
var lastName = 'Jackson';
var year = 2021;

export {firstName, lastName, year};

//除了输出变量,还可以输出函数或类(class)

//输出函数
export function mul(x, y) {
  return x * y;
};

//还可以批量输出,同样是要包含在大括号里,也可以用as重命名:
function func1() { ... }
function func2() { ... }
function func3() { ... }

export {
  func1 as f1,
  func2 as f2,
  func3 as f3
};


export语句输出的接口,都是和其对应的值是动态绑定的关系,即通过该接口取到的都是模块内部实时的值。

export模块可以位于模块中的任何位置,但是必须是在模块顶层,如果在其他作用域内,会报错。

function foo() {
  export default 'bar' // SyntaxError
}
foo()

二、import

export定义了模块的对外接口后,其它JS文件如果要访问这些接口,必须通过import来加载这个模块导入符号。

// tools.js
import {firstName, lastName, year} from './tools';

function setName(element) {
  element.textContent = firstName + ' ' + lastName;
}

import命令接受一对大括号,里面指定要从其他模块导入的变量名,必须与被导入模块(tools.js)对外接口的名称相同

如果想重新给导入的变量一个名字,可以用as关键字。

import { lastName as surname } from './tools';

import后的from 可以指定需要导入模块的路径名,可以是绝对路径,也可以是相对路径, .js扩展名可以省略;如果只有模块名,不带有路径,需要有配置文件指定。

注意,import命令具有提升效果,会提升到整个模块的头部,首先执行。(是在编译阶段执行的)

因为import是静态执行的,不能使用表达式和变量,即在运行时才能拿到结果的语法结构(e.g. if...else...)

三、module的整体加载

除了指定加载某个输出值,还可以用(*)指定一个对象,所有的变量都会加载在这个对象上。

// circle.js。输出两个函数

export function area(radius) {
  return Math.PI * radius * radius;
}

export function circumference(radius) {
  return 2 * Math.PI * radius;
}


// main.js 加载在个模块

import { area, circumference } from './circle';

console.log('圆面积:' + area(4));
console.log('圆周长:' + circumference(14));

//上面写法是逐一指定要加载的方法,整体加载的写法如下。
import * as circle from './circle';

console.log('圆面积:' + circle.area(4));
console.log('圆周长:' + circle.circumference(14));

 注意,模块整体加载所在的那个对象(上例是circle),应该是可以静态分析的,所以不允许运行时改变。

import * as circle from './circle';

// 下面两行都是不允许的
circle.foo = 'hello';
circle.area = function () {};

四、export default

之前的例子中,使用import导入时,都需要知道模块中所要加载的变量名或函数名,用户可能不想阅读源码,只想直接使用接口,就可以用export default命令,为模块指定输出。

// export-default.js
export default function () {
  console.log('foo');
}

其他模块加载该模块时,import命令可以为该匿名函数指定任意名字。

// import-default.js
import customName from './export-default';
customName(); // 'foo'

export default也可以用于非匿名函数前。

下面比较一下默认输出和正常输出。

// 第一组
export default function crc32() { // 输出
  // ...
}
//不需要大括号就能导入
import crc32 from 'crc32'; // 输入

// 第二组
export function crc32() { // 输出
  // ...
};
//需要大括号导入符号
import {crc32} from 'crc32'; // 输入

可以看出,使用export default时,import语句不用使用大括号。

ES6中export及export default的区别

        就是在导入时需不需要加一对大括号 {}。

五、import()函数

importexport命令只能在模块的顶层,不能在代码块之中。否则会语法报错。这样的设计,可以提高编译器效率,但是没有办法实现运行时加载。因为require是运行时加载,所以import命令没有办法代替require的动态加载功能。所以引入了import()函数,完成动态加载。

import(specifier)

specifier用来指定所要加载的模块的位置。import能接受什么参数,import()可以接受同样的参数。

import()返回一个Promise对象。

const main = document.querySelector('main');

import(`./section-modules/${someVariable}.js`)
  .then(module => {
    module.loadPageInto(main);
  })
  .catch(err => {
    main.textContent = err.message;
  });

1、import()作用之一:按需加载:

button.addEventListener('click', event => {
  //import模块在事件监听函数中,只有用户点击了按钮,才会加载这个模块。
  import('./dialogBox.js')
  .then(dialogBox => {
    dialogBox.open();
  })
  .catch(error => {
    /* Error handling */
  })
});

2、import()作用之二:条件加载:

//import()可以放在if...else语句中,实现条件加载。
if (condition) {
  import('moduleA').then(...);
} else {
  import('moduleB').then(...);
}

你可能感兴趣的:(node.js,HTML5技术,nodejs,export,import,js,import,js,export)