最近在对自己项目中的react-native代码进行封装,定义了一个工具类,使其中的函数被外部调用,相应的写法如下:
工具类 AlertUtils:
import {Component} from 'react'
import {
Alert
} from 'react-native'
showAlert = (msg) => {
Alert.alert('提示',msg);
}
export {showAlert}
使用
import {showAlert} from '../../util/AlertUtils'
showAlert('网络问题,请稍后再试;\r\nCode:' + JSON.stringify(error));
关键是export关键字:export语句用于在创建JavaScript模块时,从模块中导出函数等,以便其他程序可以通过 import 语句使用它们。 这里主要是对自己平时工作遇到的小问题的一个记录,以备自己随时查阅。