微信小程序中有类似Vue指令的控制属性如wx:if控制属性用来进行条件判断 index.html<view wx:if="{{condition}}">如果condition为true则显示,否则不显示</view>index.jsPage({ data:{ condition:true }})