672180
我想这样写,可以吗?
// app/extend/helper.js
module.exports = app => {
const ctx = app.createAnonymousContext();
return {
async post(url, body) {
await ctx.curl(url, {
method: 'POST',
data: body,
contentType: 'application/x-www-form-urlencoded',
dataType: 'json',
timeout: 4900,
timing: true,
headers: {
custom: '111',
},
})
}
}
}
正经应该怎么写?