wx.request({
// url:'https://api.weixin.qq.com/cv/ocr/bankcard?type=photo&img_url='+url+'&access_token='+token,
url:'https://api.weixin.qq.com/cv/ocr/bankcard?type=photo&img_url='+Url+'&access_token='+token,
method:'POST',
success:function(res){
if(res.statusCode === 200 && res.data.errcode === 0) {
wx.showToast({
title: res.data.name + '识别成功'
})
} else {
console.log("识别失败的原因",res.data)
wx.showToast({
title: res.data.errmsg,
icon:'error'
})
}
},
fail:function(error){
wx.showToast({
title: error
})
console.log("请求失败返回的错误",error)
}
}) 这是我的api请求, url为上传服务器图片的url,token正确, 但它就是提示图片路径错误,有大佬指出代码哪里有错误吗,还是url位置放错了 url 在浏览器中可以打开