- 音乐播放组件,报错r.connection is not a function
this.innerAudioContext.onError((res) => { console.log("Audio Error:"); console.error(res); }); 以上代码,报错: [图片] 音乐无法播放 ,在真机上不行,在模拟器上可以
10-24 - half-screen-dialog的maskClosable不生效
https://developers.weixin.qq.com/doc/oplatform/service_market/buyer_guideline/API/invokeService.htmlhttps://developers.weixin.qq.com/doc/oplatform/Return_codes/Return_code_descriptions_new.htmlhttps://developers.weixin.qq.com/doc/oplatform/service_market/buyer_guideline/API/retrieve.html <!--WXML示例代码--> <mp-half-screen-dialog bindbuttontap="buttontap" show="{{show}}" maskClosable="{{false}}" title="测试标题B" subTitle="测试标题B的副标题" desc="辅助描述内容,可根据实际需要安排" tips="辅助提示内容,可根据实际需要安排" buttons="{{buttons}}" ></mp-half-screen-dialog> <button class="weui-btn" type="primary" bindtap="open">Open</button> mp-half-screen-dialog的maskClosable="{{false}}"不生效,点击遮罩层依旧会关闭,有什么方式能处理?
09-06 - invokeService:fail 9301013是什么错误?
wx.serviceMarket.invokeService({ service: 'wx16e18f189768eb81', api: 'ChatCompletions', async: false, data: { model: 'SenseChat', messages: [ { role: 'user', content: 'hello' } ], }, }).then(res => { console.log('invokeService success', res) }).catch(err => { console.error('invokeService fail', err) }) 以上代码报错: invokeService fail Error: invokeService:fail 9301013 api type not match (requestId: MLxDsoi5QJte-S0IYRuPX_JNd_QP0pHZXvJYQFHS8I2B157GKfULjiKeYUtoMxlaqRU) 调用场景: 通过serviceMarket调用商汤科技日日新大模型 微信的文档中: request_id:String,是外部请求 ID,用于查询结果 data:Object,是请求内容 这个request_id是哪里来的,如果invokeService这里需要一个data,微信文档中对接商汤的data为什么还要再传一遍?
09-03