微信小程序调试模式下报错误码9301002
企业微信模式下开发工具上调用wx.serviceMarket.invokeService 报错信息如下:
“Cannot read property 'invokeService' of undefined;at api chooseImage success callback function
TypeError: Cannot read property 'invokeService' of undefined
”
真机上(ios)微信小程序模式和企业微信模式报错信息如下:
完整代码如下:
wx.chooseImage({
count: 1,
success: function(res) {
console.log(res.tempFilePaths[0])
// 调用 OCR 服务
wx.serviceMarket.invokeService({
service: 'wx79ac3de8be320b71',
api: 'OcrAllInOne',
data: {
img_url: res.tempFilePaths[0],
data_type: 3,
ocr_type:Number(7)
},
}).then(res => {
console.log('invokeService success', res)
}).catch(err => {
console.error('invokeService fail', err)
})
},
fail: function(err) {
console.error(err)
},
})
请问大家有没有解决的方案啊?