js导入导出方式
js模块的导出与导入有两种方式
一种是commonjs规范 , 一种是es6规范
commonjs
导出: module.exports =
导入: require('路径')
es6
导出: export defaule xxx
导入: import xxx from '路径'
重命名: import xxx as x from '路径' 使用时就直接用 x
按需导出: export xxx = '1'
export yyy = '2'
按需引入: imort { xxx , yyy } from '路径'
导出所有: import * as all from '路径'
使用console.log(all.xxx) // 1
重命名: import {xxx as x , yyy as y} from '路径'
使用时就直接用 console.log(x) // 1