🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ## js export 导出模块 方式一 ``` //判断登陆设备 //#ifdef APP-PLUS var device_type = 'mobile' //#endif //#ifdef MP var device_type = 'wxapp' //#endif var host = "https://hrai.online"; var socketUrl = "wss://hrai.online:39005/"; module.exports = { socketUrl:socketUrl, HOST: host, API_ROOT: host + '/api/', DeviceType: device_type, post(options) { this.request(options); }, delete(options) { options.method = 'DELETE'; this.request(options); }, }; ``` 方式二: ``` function demo(){ echo "hello world" } export { demo } ```