// 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> 即恢复正常
一毛一样的问题,就用 inline 模式的 view 将就下吧ㄟ( ▔, ▔ )ㄏ
你好,请提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
另外跟一句,应该不是自定义组件根组件不支持 text 节点把?毕竟官方文档上的确有这种情况