ocr.vehicleLicense:基于小程序的行驶证 OCR 识别(https调用)
choseImage() {
//直接使用this会获取不到数据;所以把this对象复制到临时变量thatvar that = this;//利用手机拍照,或者相册选择照片wx.chooseImage({count: 1,sizeType: ['original', 'compressed'],sourceType: ['album', 'camera'],success(res) {//图片上传,处理后返回//后端:①调用auth.getAccessToken服务端api方法获取access_token;②再获取上传的图片,经过ocr.vehicleLicense方法的处理返回wx.uploadFile({url: 'https://www.biubiu/wx/zmy', //后端接口地址filePath: res.tempFilePaths[0],name: 'img',header: {"Content-Type": "multipart/form-data;charset=UTF-8"},success(res) { //uploadFile返回的是字符串格式,需要字符串对象化 let data=JSON.parse(res.data)console.log('结果'+JSON.stringify(data))}})}})
},
温馨提示: