eggjs使用curl发送http请求的方法
栏目:
EggJs
发布时间:2022-01-21
在 eggjs 中使用 curl 发送 http 请求的方法:
GET 请求
GET 可以不用设置 options.method 参数
const res = await ctx.curl('https://www.tides.cn', {
dataType: 'json',
data: {
name: 'lucy'
}
})
console.log(res)
POST 请求
options.method 设置为 'POST'
const res = await ctx.curl('https://www.tides.cn', {
method: 'POST',
contentType: 'json',
dataType: 'json',
data: {
name: 'lucy'
}
})
console.log(res)
本文地址:https://www.tides.cn/p_eggjs-curl