<view class="section" >
<view class="card" wx:for="{{usersHonor}}">
<image src="{{item.avatar}}"></image>
<text>{{item.honorPoint}}</text>
</view>
</view>
过滤item.honorPoint,如:当值为空时,显示0。vue中可以直接套用方法。
<view class="section" >
<view class="card" wx:for="{{usersHonor}}">
<image src="{{item.avatar}}"></image>
<text>{{item.honorPoint}}</text>
</view>
</view>
过滤item.honorPoint,如:当值为空时,显示0。vue中可以直接套用方法。
10 回答11.3k 阅读
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答2.8k 阅读✓ 已解决
3 回答2.4k 阅读✓ 已解决
3 回答2.2k 阅读✓ 已解决
2 回答2.7k 阅读✓ 已解决
试试这么写
{{item.honorPoint || 0}}