共计 403 个字符,预计需要花费 2 分钟才能阅读完成。
导出的根本用法
// 导出数据
export let name = 'learn';
export const age = 18;
// 导出类
export class Rect {constructor(width, height){
this.width = width;
this.height = height;
}
}
// 导出函数
export function sum(a, b){return a + b;}
导入的根本语法
import {name, age, Rect, sum} from './example.js';
// 不能给导入的绑定赋值,如 name = 'zhangsan'; 会报错
导入整个模块
import * as example from './example.js'
// example 就蕴含了 js 文件里的全副 export 内容
import export 不容许呈现在其余语句或函数内,如 if 里。、
改名的状况
import {sum as add} from './example.js'
正文完
发表至: javascript
2021-01-28