2022 年 4 月份,该 bug 依然存在。
开发工具代码热重载对于import的wxss文件无效我在app.wxss中写css代码,热重载有效,但是在@import 'wxss/pui.wxss';里写的代码热重载就无效; 这个有没有什么办法解决?[图片]
2022-04-292021 年 4 月 7 日,发现该 BUG 已修复。
【微信 Mac】在微信 Mac 端点击自定义 tabbar 切换页面会致其消失重现步骤: 用开发者工具打开来自官方的自定义 tabbar 代码片段启动 Mac 端真机调试点击第二个 tab 切换页面发现 tabbar 消失[图片] [图片] [图片]
2021-04-07重启 devtools 的所有实例后我解决了
wx.request请求开发者工具无响应但真机正常?window10,工具版本1.04.2009282和1.04.2009112 ; 开启校验域名时,wx.request请求实际已到达服务端,且服务器有响应,但开发者工具无反应,fail/success/complete都不执行,真机环境下却正常. 上一个提问不小心删了,现在重发。代码片段:https://developers.weixin.qq.com/s/85V3FImg7jkZ 补充:是在另几台初次新装开发者工具的电脑上有这问题,其他以前装的过开发者工具的没问题
2020-11-03艹!谢谢你的提醒,我 debug 简直太痛苦了
this.animate()仅修改backgroundColor无效?this.animate()仅仅只修改backgroundColor时,没有效果。但是加入height(变化跨度约为300rpx)后,backgroundColor的颜色值才生效?????????????????????????????
2020-09-08目前别用 enhanced 模式,在 iOS 13 上有严重的滚动卡死的 BUG https://developers.weixin.qq.com/community/develop/doc/000e664b8e0d58a53bda5932553c00?jumpto=comment&commentid=000eea57b08fd0793edaee391560
scroll-view enhanced属性无效?scroll-view 设置属性 enhanced="{{true}}" binddragstart="onStart" bindd:ragend="onEnd" 。 滚动的时候onStart onEnd方法监听无效。 scroll-view scroll-y style="width: 100%; height: 400px;" enhanced="{{true}}" refresher-enabled="{{true}}" refresher-threshold="{{80}}" refresher-default-style="none" refresher-background="lightgreen" bindrefresherpulling="{{refresh.onPulling}}" binddragstart="onStart" bindd:ragend="onEnd" > onStart(e){ console.log('滚动开始') }, onEnd(e){ console.log('滚动结束') },
2020-08-20[图片] 另外跟一句,应该不是自定义组件根组件不支持 text 节点把?毕竟官方文档上的确有这种情况
自定义组件内 <text> 内嵌 <slot> 情况下其插槽视图无法更新// custom-component.wxml <text> <slot/> </text> //page.wxml <custom-component> {{dynamicString}} // changing this value using setData method doesn't trigger view update inside </custom-component> 值得注意的是:数据已更新,markup 已更新,视图就是不更新。只要 <slot> 在 <text> 内部就是无法更新视图,不管 <text> 是否为根节点。 目前我的解决方案,将 <text> 换成 <view> 即恢复正常
2020-06-23