图片像素太大了 最好小于2000
iphone13 页面图片过大出现闪退 提示小程序意外退出,请稍后重试?页面里面有个1.3MB的网络图片 进入页面后页面闪烁了几下小程序闪退然后提示小程序意外退出请稍后重试,如果不加载那个图片就不会闪退 <image style="width: 100%;" src="{{info.courseDetailsurl}}" mode="widthFix" /> 把这段代码注释不去加载图片就不会闪退
星期四 11:14IOS26 大于2K x 2K的尺寸会导致内存爆满退出,限制上传或者cdn裁剪
IOS26,小程序意外退出iOS26系统,打开小程序会闪屏然后意外退出; 其他版本无问题 在开发时生成一个预览码,反复扫描多次后可以触发。 我试过清空小程序缓存、删除小程序、后台退出微信; 删除小程序+退出微信重启 比较有效,但是多次打开后依然会闪退 代码片段因体积限制,移除了分包 依赖,原本的小程序有三个分包,总体积7m; 代码判断并不能引起这个bug,可能是体积问题? 小程序反复启动几次,产生的体积约20m(在微信设置-存储空间-小程序中看的) 小程序中存在多语言的逻辑utils\language.js [图片]
12-02看这个问题就知道问错地了
小程序突然不能用了 这是什么原因?小程序突然不能用了 这是为啥? [图片]
11-27开启PC调试就知道了 肯定是API不兼容
pc端微信4.1.5.16版本打开小程序空白页,只显示tabbar?pc端微信4.1.5.16版本打开小程序空白页,只显示tabbar。 [图片]
11-27正常使用指的是可以打开还是支付等功能也要支持?要提前绑定新主体的商户号,主体迁移完成解除旧的商户号就不会影响支付。至于其他的小程序码物料都不需要替换
我要修改微信小程序主体,修改期间,小程序能正常使用么?我要修改微信小程序主体,修改期间,小程序能正常使用么?
11-27申诉一下
微信扫码不能跳转小程序,提示“非微信官方网页,请确认是否继续访问”。不能跳转?微信扫码不能跳转小程序,提示“非微信官方网页,请确认是否继续访问”。不能跳转?域名状态也是正常的,怎么处理恢复? https://iot.yingbangjianshi.com/?port=100000101[图片][图片]
11-18是不是带有诱导分享
微信转发分享功能失效了?这两天发现我们的微信分享,转发功能突然失效了,请问是怎么回事,前几天微信转发朋友,都带着图片,标题和描述,现在全部失效了,没有动过代码
11-06+1 官方能帮忙看看吗 只有ios26会崩溃 还不知道是哪个地方导致的
小程序客户端页面在ios26上闪退,苹果其它版本的操作系统不会闪退,安卓和华为都不会闪退[图片]
10-15如果是自定义导航的话注意一下层级,如果不是,而是是页面里面手写的定位fixed不会生效 要用官方的custom-tab-bar 或者app.json的tabbar
使用web-view嵌入的H5页面,为什么会被导航栏遮挡?[图片][图片] 如上图所示 目前在荣耀X60可复现这个问题,微信版本为8.0.62
10-13组件需要 template 属性啊 你都注释了就报错了
wx-open-subscribe组件一直报的template can't be empty的问题?基于vue2开发,一直报:VM1023:4 [WXTAG] [JSCORE] template can't be empty <template> <div class="app-container"> <wx-open-subscribe v-if="isWechatReady" id="wx-open-subscribe" template-id="Q_J-LrD3F4qW6fFmbNg3GMEnoWXdtCvzUsW6fnFdqYQ"> <script type="text/wxtag-template"> <div style="background: #287AED;width: 325px;height: 40px;border-radius: 20px;font-size: 16px;color: #FFFFFF;display:flex;align-items:center;justify-content:center;"> 订阅 </div> </script> <!-- <template v-slot:default> <button class="subscribe-btn">订阅消息</button> </template> --> </wx-open-subscribe> </div> </template> <script> import { jsapi } from "@/api/test/send"; export default { name: "test", data() { return { appId: 'wx470fbb322efc3e8a', timestamp: '', nonceStr: '', signature: '', isWechatReady: false, }; }, mounted() { let that = this; this.$nextTick(() => { that.getWxConfig(); }); }, methods: { getWxConfig() { let url = window.location.href.split('#')[0]; jsapi({url:url}).then(res=>{ console.log(JSON.stringify(res)) this.timestamp = res.data.timestamp; this.nonceStr = res.data.nonceStr; this.signature = res.data.signature; this.initWxConfig(); }); }, initWxConfig() { wx.config({ debug: false, appId: this.appId, timestamp: this.timestamp, nonceStr: this.nonceStr, signature: this.signature, jsApiList: ['checkJsApi'], openTagList: ['wx-open-subscribe','wx-open-subscribe-dialog'] }); wx.ready(() => { console.log('微信 JS - SDK 初始化成功'); this.isWechatReady = true; //this.bindSubscribeEvent(); }); wx.error((res) => { console.error('微信 JS - SDK 初始化失败', res); }); }, bindSubscribeEvent() { const subscribeBtn = document.getElementById('wx-open-subscribe'); if (subscribeBtn) { subscribeBtn.addEventListener('change', (event) => { const { detail } = event; if (detail.errMsg ==='subscribe:ok') { console.log('订阅成功'); } else { console.log('订阅失败', detail.errMsg); } }); } }, subscribeSuccess(res) { console.log('订阅成功', res); // 可以在这里添加订阅成功后的逻辑,比如提示用户等 }, subscribeError(err) { console.error('订阅失败', err); // 可以在这里添加订阅失败后的逻辑,比如提示用户重试等 } } }; </script> <style scoped> .subscribe-btn { padding: 10px 20px; background-color: #007bff; color: white; border: none; border-radius: 4px; cursor: pointer; } .subscribe-btn:hover { background-color: #0056b3; } </style>
04-25