为了账号安全,请及时绑定邮箱和手机立即绑定

ES6Module如何整体加载?

ES6Module如何整体加载?

MM们 2019-03-15 18:15:29
请问, 现在我有time, route工具函数文件, 如何统一在index中代理输出?time.js中export cosnt time1export cosnt time2route.js中export cosnt route1export cosnt route2如何将time.js与route.js在index.js中整体输出然后可以import {time1} from './index'我现在使用export * from './time'export * from './route'然后报 exports is not defined?另外, time与route中有很多函数的.
查看完整描述

3 回答

?
慕虎7371278

TA贡献1802条经验 获得超4个赞

是不是代码里有的export写成了exports


查看完整回答
反对 回复 2019-04-09
?
潇潇雨雨

TA贡献1833条经验 获得超4个赞

*符号只用在import中,

如果非要用*,可以


import * as all from './time';

export all

ps:*尽量少用


查看完整回答
反对 回复 2019-04-09
?
HUX布斯

TA贡献1876条经验 获得超6个赞

import * as route from './route';

import * as time from './time';


export {

  ...route,

  ...time,

};


查看完整回答
反对 回复 2019-04-09
  • 3 回答
  • 0 关注
  • 538 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信