[图片]
wx.getAccountInfoSync()今天突然获取不到线上版本了?[图片]
05-15企业微信相关问题请到企业微信社区咨询 https://developer.work.weixin.qq.com/community/question
企业微信会话存档中的语音文件使用的音频格式是多少?企业微信 会话存档中的音频文件格式是否是统一的格式,格式是多少?我们需要配置音频文件转文字的功能时用到
05-15微信小程序撤回个人信息收集功能主要通过以下机制实现: 用户路径:设置→小程序已获取的信息→选择信息→通知开发者删除开发者需自行建立数据删除处理机制,微信平台仅传递删除通知,不提供自动删除API开发者合规要求必须在小程序隐私指引中提供有效联系方式(格式示例:miniprogram@**.com)建议在隐私设置页提供明确的数据管理入口注意事项: 微信未提供直接撤回收集功能的API接口,需通过权限管理和用户主动触发实现用户授权状态可通过wx.getSetting接口的authSetting对象获取实时状态 小程序用户撤回事件:https://developers.weixin.qq.com/miniprogram/dev/framework/security.html#%E4%BF%A1%E6%81%AF%E6%B3%84%E9%9C%B2 小程序用户隐私保护指引内容介绍隐私协议开发指南
麻烦问下哪位大佬知道微信小程序撤回个人信息收集功能接口在哪里呢?小程序需要做撤回个人信息收集功能,搜了半天没有搜到对应接口信息;
05-15点页面申请恢复后再试
小程序扫普通二维码跳转小程序出现问题?,现在跳转不了,原先可以[图片][图片]
05-14请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
页面显示异常问题如何处理?[图片]用微信开发者工具打开代码后,模拟器的位置前方有一块白色挡住,是什么原因?
05-14请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
ios系统wx.vibrateShort(),事件bindtouchmove中执行成功,但无振反馈?问题描述:在ios系统中bindtouchstart事件执行振动事件有振动反馈。然后手指移动后达到一定距离后执行振动事件,无振动反馈,可以参考kimi小程序中的录音发送内容,手指向上和向下移动时没有振动反馈,安卓手机手指移动时有振动反馈 wxml: <button class="audio" bindtouchstart="handleTouchStart" bindtouchmove="handleTouchMove" bindtouchend="handleTouchend"> {{recorderStatus !== 3?'正在录音...':'按住说话'}} </button> js: Component({ data:{ recorderStatus:3 startY: 0, moveY: 0, }, methods: { handleTouchStart(e) { //执行振动反馈 wx.vibrateShort({ type: 'heavy', success:(res)=>{ console.log('success',res) }, fail:(err)=>{ console.log('err',err) }, }) this.setData({ recorderStatus:1, }); this.data.startY = e.touches[0].clientY; }, handleTouchMove(e) { this.data.moveY = e.touches[0].clientY; const distance = this.data.startY - this.data.moveY; if (distance > 0 && distance >= this.data.cancelDistance) { wx.vibrateShort({ type: 'heavy', success:(res)=>{ console.log('success',res) }, fail:(err)=>{ console.log('err',err) }, }) } }, })
05-14企业微信相关问题请到企业微信社区咨询 https://developer.work.weixin.qq.com/community/question
企业微信打开小程序跳转到微信支付/分享,会一直出现跳转中 或者处理中的问题,有人遇到过吗?场景:在企业微信打开小程序,涉及到需要跳转到微信的交互(比如 微信支付,分享给微信好友)经常会遇到这种情况,卡着转半天,有时候偶尔微信支付成功了回跳的时候又一直在loading,最后回调的结果是支付失败,分享也是会一直卡着回不到企微中 大家有遇到过这种场景吗?有没有好的解决方案 [图片]
05-14请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
enableChunked: true,流式请求,丢包问题!?const requestTask = await wx.request({ method: "POST", enableChunked: true, url: `https://api.coze.cn/v1/workflows/chat`, header: { Accept: "text/event-stream", Authorization: `Bearer ${apiKey}`, "Content-Type": "application/json", "Cache-Control": "no-cache", "X-DashScope-SSE": "enable", // 流式输出 }, responseType: "stream", // 用于处理流式响应 data: data, success: (res) => {
05-14请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
鸿蒙系统中,当视频大小与 video 容器大小不一致时视频会全屏填充。object-f无效鸿蒙系统中,当视频大小与 video 容器大小不一致时视频会全屏填充。object-f无论怎样设置都无效 在开发工具显示正常,真机测试视频会拉满整个屏幕 关键代码如下 object-fit="contain" 已设置 <video class="video-player" :id="videoId" :style="{ width: `${width}`, height: `${height}` }" webkit-playsinline="true" playsinline="true" x-webkit-airplay="allow" x5-video-player-type="h5-page" referrer-policy="origin" x5-video-orientation="portrait" :src="src" :initial-time="initialTime" :controls="isFullScreen" :show-center-play-btn="false" :autoplay="autoplay" :muted="isMute" :poster="poster" object-fit="contain" @play="videoPlay" @pause="videoPause" @ended="videoEnded" @timeupdate="videoTimeUp" @loadedmetadata="videoLoaded" @seeked="videoSeeked" @seeking="videoSeeking" @waiting="videoWaiting" @error="videoError" @fullscreenchange="onFullScreen"></video> [图片][图片]
05-13提供下代码片段和复现方式(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
线上用户,有用户request请求报错线上用户网络请求的时候,有个别接口报错,并没有在服务器上看到接口的网络请求日志,猜测是被微信拦截了。打印错误日志如下, {"data":"","profile":{"transportRttEstimate":0,"domainLookUpStart":0,"responseEnd":0,"sendBytesCount":0,"redirectStart":0,"connectEnd":0,"protocol":"","peerIP":"","requestStart":0,"socketReused":false,"fetchStart":0,"SSLconnectionStart":0,"estimate_nettype":0,"httpRttEstimate":0,"throughputKbps":0,"SSLconnectionEnd":0,"downstreamThroughputKbpsEstimate":0,"domainLookUpEnd":0,"responseStart":0,"redirectEnd":0,"rtt":0,"connectStart":0,"port":0,"receivedBytedCount":0,"requestEnd":0,"usingHighPerformanceMode":false},"header":{},"statusCode":-1,"cookies":[],"useHttpDNS":true,"accelerateType":"none","errMsg":"request:ok"}
05-13