为何我在uni-app的三元运算不起效果?
<view style="(item.l11_30=='true' ? 'background-color:red' : 'background-color:green')">
</view>
<script>
export default {
data(){
return{
bga:'#CCCCCC',
bgb:'#FFB9DC',
ac:'true',
a2:[],
}
},
onShow: function() {
//开始请求服务器数据开始
uni.request({
url:'http://localhost/app/1.asp',
data: {
id1:'2',
id2:'addoil',
},
method: 'post',
header: {
'content-type': 'application/x-www-form-urlencoded',
},
success: (res) => {
console.log(res);
this.a2 = res.data;
console.log(this.a2);
}
});
//开始请求服务器数据结束
}
}
</script>

为何我在uni-app的三元运算不起效果?
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
3条回答 默认 最新
- let us fly 2023-01-29 16:49关注
直接写style只会识别为文字,必须使用动态样式:style才能识别变量和方法
如::style="{'margin-right': 1== 1 ? '32rpx' : ' ' }"本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报 编辑记录