wx.request({
url: 'https://aip.baidubce.com/rest/2.0/image-classify/v1/body_seg',
method:'POST',
data:{
grant_type: bdid, //AppID
client_id: bdkey, //API Key
client_secret: bdas, //Secret Key
image:imgs //本地图片地址
},
header: {
'content-type': 'application/json' // 默认值
},
success (res) {
console.log(res.data)
}
})