wx.request({ //请求识花接口
url: 'https://aip.baidubce.com/rpc/2.0/ai_custom/v1/classification/943835',
header: {
"Content-type": "application/json",//决定用哪种post请求,是固定的
},
method: 'post', //请求固定为post请求
data: { //请求时需要上传的数据
image: base64, //图片编码数据
access_token: token,//获取的token权限
},
success: function (res) {
//console.log('识别成功跳转页面')
console.log(res.data.result)//控制台输出识别后得到的数据中的结果
}
})
undefined