怪物奇妙物语

宇宙无敌超级美少男的怪物奇妙物语

首页 新随笔 联系 管理
  819 随笔 :: 0 文章 :: 2 评论 :: 16万 阅读

常见的导出方式

创建文件 foo.js

//设置常量
const name = 'tom';
const age = 20;
const hello = function(age){
console.log('张三今年'+age)
}

方式一

export const name = 'tom';
export const age = 20;
export const hello = function(age){
console.log('张三今年'+age)
}

方式二

//在{}中做统一导出
//{}不是一个对象,其中放置要导出的变量的引用列表
export {name,age,hello}

方式三

//以别名的方式导出
export {
name as BName,
age as BAge,
hello as Bhello
}

常见的导入方式

方式一

import { name,age,hello} from './foo.js'

方式二

//以别名的方式导入 使用
import { name as SName,age as SAge,hello as Shello} from './foo.js'
import { Bname as SName,Bage as SAge,Bhello as Shello} from './foo.js'

方式三

//以*as foo 的方式全部使用
import * as foo from './foo.js'
//使用
console.log(foo.name)
console.log(foo.age)
foo.hello('李四')

本文由 简悦 SimpRead 转码, 原文地址 blog.csdn.net

posted on   超级无敌美少男战士  阅读(49)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 微软正式发布.NET 10 Preview 1:开启下一代开发框架新篇章
· 没有源码,如何修改代码逻辑?
· PowerShell开发游戏 · 打蜜蜂
· 在鹅厂做java开发是什么体验
· WPF到Web的无缝过渡:英雄联盟客户端的OpenSilver迁移实战
点击右上角即可分享
微信分享提示