请教一下各位哥哥姐姐们!!!是这样的,有一个蓝牙列表显示搜索出来的蓝牙设备,目前有三种设备会被显示,就 设备A显示a.png,设备B显示b.png,设备C显示c.png,我该怎么办呢?没有好的解决方法,好苦恼。
下面代码是现在用来显示两种设备的方式
<image src="/image/{{ (item.name == "A") ? "A" : "B" }}.png" style="width:70rpx;height:70rpx;border-radius: 30%;" mode="aspectFit"></image>
<image src="/image/{{ item.name === "A" ? "A" : item.name === 'B' ? 'B' : 'C' }}.png" style="width:70rpx;height:70rpx;border-radius: 30%;" mode="aspectFit"></image>
<image src="/image/{{ (item.name === "A") ? "A" : (item.name === 'B') ? 'B' : 'C' }}.png" style="width:70rpx;height:70rpx;border-radius: 30%;" mode="aspectFit"></image>
<image wx:if="{{A}}" /> <image wx:if="{{B}}" /> <image wx:if="{{C}}" />