问题:以下wx:for里的wx:if , wx:else 会报这个错:Bad attr 'wx
<scroll-view class="scroll1" scroll-x enable-flex="true">
<view wx:if="{{playlist.length>0}}" class="item" wx:for="{{playlist}}" >
<image class="item-img" src="{{item.song.al.picUrl?item.song.al.picUrl:'/static/images/recommendSong/02.jpg'}}"></image>
<text class="item-value">{{item.song.al.name}}</text>
</view>
<view wx:else> 暂无播放记录</view>
</scroll-view>
文章来源:https://www.toymoban.com/news/detail-635335.html
解决:
WX:FOR和WX:IF在同一个标签下提:for的优先级比if的优先级要高,wx:if 与wx:for 不能写在同一个标签上,按如下代码个性,增加一个block包裹:文章来源地址https://www.toymoban.com/news/detail-635335.html
<scroll-view class="scroll1" scroll-x enable-flex="true">
<block wx:if="{{playlist.length>0}}">
<view class="item" wx:for="{{playlist}}" >
<image class="item-img" src="{{item.song.al.picUrl?item.song.al.picUrl:'/static/images/recommendSong/02.jpg'}}"></image>
<text class="item-value">{{item.song.al.name}}</text>
</view>
</block>
<view wx:else> 暂无播放记录</view>
</scroll-view>
到了这里,关于小程序wx:else提示 Bad attr `wx的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!