美文网首页
uni-app中三目运算的正确用法

uni-app中三目运算的正确用法

作者: hao_developer | 来源:发表于2024-03-18 19:55 被阅读0次

    在class中写三目运算要记得加一个中括号[]

     <view :class="[de_index == '-1' ? 'de-color' : '']">{{de_index == '-1' ? '请选择职务' : array[de_index]}}</view>
    

    在style中写三目运算不是加[],而是加()

      <view class="text" :style="'color:' + (de_index == '-1' ? 'red' : 'green') ">电话号码</view>
    

    相关文章

      网友评论

          本文标题:uni-app中三目运算的正确用法

          本文链接:https://www.haomeiwen.com/subject/mhfizdtx.html