楼主解决了吗?我也碰见这个问题了
OCR功能使用的CDN服务怎么计费和缴费的?wx.chooseImage({ count: 1, success: async function(res) { try { const invokeRes = await wx.serviceMarket.invokeService({ service: 'wx79ac3de8be320b71', api: 'OcrAllInOne', data: { // 用 CDN 方法标记要上传并转换成 HTTP URL 的文件 img_url: new wx.serviceMarket.CDN({ type: 'filePath', filePath: res.tempFilePaths[0], }), data_type: 3, ocr_type: 1 }, }) console.log('invokeService success', invokeRes) wx.showModal({ title: 'success', content: JSON.stringify(invokeRes), }) } catch (err) { console.error('invokeService fail', err) wx.showModal({ title: 'fail', content: err, }) } }, fail: function(res) {}, complete: function(res) 在官网给的这个demo中,使用了wx.serviceMarket.CDN服务,这个服务的计费和收费是和OCR一体的吗,会不会流量超出欠费异常了, 关键我也没找到充值缴费CDN服务的地方啊?
12-02