<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中可以直接套用方法。
8 回答4.6k 阅读✓ 已解决
6 回答3.3k 阅读✓ 已解决
5 回答2.8k 阅读✓ 已解决
5 回答6.3k 阅读✓ 已解决
4 回答2.2k 阅读✓ 已解决
4 回答2.7k 阅读✓ 已解决
3 回答2.4k 阅读✓ 已解决
试试这么写
{{item.honorPoint || 0}}