企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
[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 } ```