直接上代码,兄弟们一看便知。
const ctx = this.ctx;
//url为另一个后台的地址+另一个后台方法的路由
let url = "http://127.0.0.1:7003" + "/router"
const result = await ctx.curl(url, {
method: 'get',//请求类型
contentType: 'json',//连接类型
data: {
data:data//传递的数据
},
dataType: 'json',//数据类型
});