赞
踩
第一种写法:
- // 常量的定义
-
- const config = {
- baseurl:'http://172.16.114.5:8088/MGT2'
- }
-
- // 函数的定义
-
- function formatXml(text) {
- return text
- }
-
- // 导出 {常量名、函数名}
- export {config,formatXml}
第二种写法:
- // 常量的定义
- export const config = {
- baseurl:'http://172.16.114.5:8088/MGT2'
- }
-
- // 函数的定义
- export function formatXml(text) {
- return text
- }
import {config,formatXml} from '../config' // 记得带上{}花括号
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。