首页 > 代码库 > import 和 export -- ES6
import 和 export -- ES6
例子:
最后返回的结果是:
{ default: function fn2(){ }, foo2: 1, test3: { default: function fn3(){ }, foo3: 1 } }
// app.js // import json from ‘./1.json‘; import * as all from ‘./test2‘; import fn2 from ‘./test2‘; console.log(all); console.log(all.default === fn2); // true console.log(fn2); // test2.js function fn2(){ console.log(1); } export default fn2; var foo2 = 1; export {foo2}; export * as test3 from ‘./test3‘; // test3.js function fn3(){ console.log(1); } var foo3 = 1; export {foo3}; export default fn3;
import 和 export -- ES6
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。