微信小程序 Failed to load local image resource

最近做小程序发现小程序报了个错Failed to load local image resource 但是图片正常加载

这是因为初始化的时候,变量还没渲染进去

解决方法 在src前面加个wx:if

<image wx:if='{{customerLevel.value}}' class="iconLevel" src='{{customerLevel.value?tools.getLevel(customerLevel.value):"请选择"}}'></image>


标签: 微信 微信小程序