AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# 请求 请求基于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