合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
# 请求 请求基于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