支持的
openCustomerServiceChat 开启了发送小程序气泡消息,在pc端不出现?[图片]pc端咨询客服的时候 是不支持弹出小程序 不能像在手机上一样 出现发送小程序起泡消息弹窗吗?
2024-12-18https://developers.weixin.qq.com/miniprogram/dev/framework/user-privacy/plugin-intro.html#:~:text=chooseInvoiceTitle%E3%80%81wx.chooseInvoice-,%E6%94%B6%E9%9B%86%E4%BD%A0%E9%80%89%E4%B8%AD%E7%9A%84%E7%85%A7%E7%89%87%E6%88%96%E8%A7%86%E9%A2%91%E4%BF%A1%E6%81%AF,-wx.chooseImage%E3%80%81wx
没找到获取是否有获取“选中的照片或视频”权限的代码https://developers.weixin.qq.com/miniprogram/dev/api/open-api/privacy/wx.requirePrivacyAuthorize.html 没找到获取是否有获取“选中的照片或视频”权限的代码[图片] [图片]
2024-12-18参考image组件不展示,wx.previewImage能展示? https://developers.weixin.qq.com/community/develop/doc/00066e5785ca702706915cfad66800
图片偶发性无法展示,但previewImage可以展示,一些排查过程请教下?iOS 17.4.1 微信 8.0.48 基础库3.4.2 现象: 我们的图片服务 url 访问时会302到真正的资源上,业务接口返回图片服务url给页面渲染用。 今天发现开发版和体验版上, 无论是 <image src={{url}}> 还是 view 的 background-image 图片,这类302图片url均无法展示。 但同时,这些 URL 在手机safari、微信浏览器、其他app的内置webview,均是可以正常展示的。在页面加个previewImage,尝试了是可以展示图片的。 在 image 加上 binderror,打印出来error信息是 “GET http://[我们的302url] 404(Not Found)。” 尝试在微信下拉,长按小程序删掉,然后重新打开,图片仍然不展示。kill掉微信重新打开后打开小程序,问题仍旧出现。 本来准备提供代码片段,但当我新建代码片段把逻辑复制进来,却无法重现。 同时间,出问题的地方仍旧异常,于是给src加了随机时间戳,类似 <image src={{url + '?123'}}>,重新预览,这下子发现可以渲染图片了。 询问了服务端,也没有任何referer限制 但这期间,服务没有变更,资源本身没有变更,页面代码也没有变更。 不知道微信端有没有什么指引可以指教下,为什么会发生这种情况?
2024-12-18请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
提示[渲染层网络层错误] Failed to load media,视频打不开<hello-list :playersrc="playersrc" :autoplay="false" comid="p1" style="width:100vw;height:100vh;" @play="onPlay()" @pause="onPause()" objectfit="contain" @error="onError()"/> data() { return { playersrc: 'https://xxx.mp4', } }
2024-12-18请按照链接提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
worklet.spring 给value 赋值为NaN?initAnimation初始化的时候都正常,到didSpring方法中,this.sharedValueArr[idx].value) = NaN了 把spring换成timing方法就可以正常执行。 console.log("Calling spring with:", this.sharedValueArr[idx].value); import { worklet } from "../../../utils/animation/worklet-api"; const { shared, runOnUI, runOnJS, repeat, sequence, spring, timing, Easing, cancelAnimation } = worklet; const { screenWidth } = wx.getSystemInfoSync(); Component() .behavior(audioContext) .options({ multipleSlots: true }) .property("safeBottom", { type: Number, value: 0 }) .property("isSent", { type: Boolean, value: false }) .property("record", { type: Object, value: {} }) .data(() => ({ showMenu: false, move: "", })) .lifetime("attached", function () {}) .pageLifetime("show", function () { this.initAnimation(); }) .methods({ initAnimation() { const elements = [ { id: "menumove", toValue: { x: 0 } }, { id: "playmove", toValue: { x: 40 } }, ]; var _this = this; var numsOfBox = elements.length; var sharedValueArr = []; var _loop = function _loop(i) { var translate = shared(elements[i].toValue); sharedValueArr.push(translate); console.log("translate", translate); _this.applyAnimatedStyle(`.${elements[i].id}`, function () { "worklet"; return { transform: `translateX(${translate.value.x}px)`, }; }); }; for (var i = 0; i < numsOfBox; i++) { _loop(i); } this.sharedValueArr = sharedValueArr; console.log("sharedValueArr", sharedValueArr); }, startAnimation: function startAnimation() { const values = [{ x: screenWidth - 90 }, { x: 335 }]; this.didTiming(0, values[0]); this.didSpring(1, values[1]); }, didTiming(idx, toValue) { this.sharedValueArr[idx].value = timing( toValue, { duration: 1500, easing: Easing.linear, }, function () { "worklet"; console.log("timing done"); } ); }, didSpring(idx, toValue) { console.log("Calling spring toValue:", toValue); this.sharedValueArr[idx].value = spring( toValue, { damping: 20, stiffness: 90, }, function () { "worklet"; console.log("spring done"); } ); console.log("Calling spring with:", this.sharedValueArr[idx].value); }, }) .register();
2024-12-18请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
ios 18.2端报错 maximum call stack size exceededios18.2 真机调试会提示这个问题,体验版没有,预览也没有这个问题 ios18.1 真机调试,体验版,预览,均没有这个问题 [图片]
2024-12-18请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
refresher-two-level-enabled 为什么设置为true,无法关闭?refresher-two-level-enabled 初始为false,在bind:refresherstatuschange="onStatusChange"二层打开时,改变状态为true,为什么状态变成true后,无法通过this.scrollContext.closeTwoLevel 关闭二层。
2024-12-18你好,请移步企微官方讨论区:https://developer.work.weixin.qq.com/community/question
消息卡片详情链接跳转到工作台应用指定自建应用么?消息卡片详情链接跳转到工作台应用指定自建应用么
2024-12-18在正式版打开调试还有一种方法,就是先在开发版或体验版打开调试,再切到正式版就能看到vConsole
小程序授权接口一直调用不成功?状态码301现象: 1.他不是一次都不成功,是极少情况下会调成功 2.因为之前那个人写的是只要没调成功(errcode不为空)就强制设置状态码301,而且不存在任何调用链日志裂开,想看当时发生了什么都无从下手 诉求:希望能帮我通过appid帮我看看当时调用的结果 大概的原因是啥[图片]
2024-12-18请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
如何解决wx.reLaunch 跳转skyline的页面会多次跳转的问题?[图片]
2024-12-18