多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# 请求 请求基于Axios开发,对于详细文档请[查阅文档](https://www.npmjs.com/package/axios) ## 发起请求 ``` const option = { url: `/mogo-sdk/class/xxx`, method: "post", data: { a:"a" } }; Mogo.request(option).then(function(res){ }); ``` ### url ``` Mogo.init({ domain: "http://comment.mogofun.cn", // 接口地址 .... }); ``` 在Mogo.init() 中填写了domain 因此如果填入绝对http请求 则会请求直接请求 如果请求相对路径则会加上domain example: ### 相对路径 > url:"/list/rank" => http://comment.mogofun.cn/list/rank ### 绝对路径 > url:" http://comment.mogofun.cn/user/123" => http://comment.mogofun.cn/user/123