目前已经修复问题了,是setData数据量太大的问题。大部分用户没问题,部分iOS用户会出现白屏,供参考
IOS部分机型白屏从10月31日开始陆续收到用户反馈白屏。在Donut上查看没有报错,也没有网络请求错误,就是页面跳转过去就什么都不显示。用户的设备可以复现,开发人员的复现不了。 出现问题的机器 [图片] 部分日志 [图片] [图片] 客户那边的报错: Framework inner error (expect START descriptor with depth 2 but get FLOW_DEPTH) https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:62002 https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:66959 expectStart@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:2072178 bo@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:2025447 https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:2025357 https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:2025308 yo@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:2025348 nextStep@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:2071776 cn@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:1985150 gn@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:1986902 fn@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:1987637 gn@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:1987181 _updateValues@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:1991521 updateValues@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:1991120 https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:513655 https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:523470 bo@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:2026124 https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:2025357 https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:2025308 yo@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:2025348 n@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:2073378 q@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:1939974 https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:1939743 https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:1940660 https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:427763 https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:335124 emit@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:121074 dispatch@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:128425 cb@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:128735 emit@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:120684 subscribeHandler@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:2:124310 global code@https://servicewechat.com/wxc22e9c55259ea3c9/318/page-frame.html:1:72
11-12建议chooseMedia支持选择是否压缩视频
使用chooseMedia该接口拍摄视频并上传,系统出现压缩中请稍后,这个压缩是系统层面的?可控制?chooseMedia chooseMedia 使用chooseMedia该接口拍摄视频并上传,系统出现压缩中请稍后,这个压缩是系统层面的?可控制?
2021-01-27顶
wx.loadFontFace在安卓手机全局生效,但进不同的页面会多次加载字体文件在app.js调用loadFontFace并设置为全局后,在安卓手机(小米8)上先后打开小程序不同页面,在小程序保持前台显示的情况下,不同页面中会重复加载同一个字体文件。这样用户耗费流量大,且体验不好(字体加载后出现抖动),辛苦关注。
2020-08-25同样遇到这样的BUG, 希望官方早日修复
用hidden切换地图和列表,scroll-view列表的下拉刷新失效。用hidden切换地图和列表,scroll-view列表的下拉刷新失效。 <!-- 正常 --> <!-- <view class="content" wx:if="{{type == 'list'}}"> <scroll-view scroll-y="true" refresher-enabled="{{true}}" refresher-triggered="{{triggered}}" bindrefresherrefresh="refresh" > ....... </scroll-view> <!-- ---------------------------------------------------------------------------------------- --> <!-- 失效 --> <view class="content" hidden="{{type == 'list'? false: true}}"> <scroll-view scroll-y="true" refresher-enabled="{{true}}" refresher-triggered="{{triggered}}" bindrefresherrefresh="refresh"> ....... </scroll-view> </view>
2020-06-06