1. 程式人生 > >vue.js控制列表的每一項

vue.js控制列表的每一項

eg:

<div v-for="(i,index) in resultful_list" class="my_similar_collect_div" >
    <div v-bind:class="{add_class:i.isActive}" 
    style="height: 200px; font-size: 14px; width: 100%; color: rgb(122,122,122);" class="old_class">
         <div style="margin-top: 8px;">
              <span style="color: rgb(64,158,255);">:</span>
                  <span v-if="x.name.length<70"   v-for="x in i.disease.disease"
                   style=" display:inline-block;font-size: 14px; margin-right:5px;color:#7A7A7A;">
                   <span v-if="x.name">{{x.name}}</span>
                   </span>
                   <span v-if="i.disease.disease"></span>
                   <span v-else>無</span>
                   <span v-if="x.name && x.name.length>=70"  v-for="x in i.disease.disease"
                   style=" display:inline-block;font-size: 14px; margin-right:5px;color:#7A7A7A;">
                   {{x.name.substring(0,70) + '...'}}</span>
         </div>
    </div>
</div>
如上在一個列表即(v-for)迴圈中,想控制其列表中每一項變化。我們需要為其繫結類
 v-bind:class="{add_class:i.isActive}" 

add_class是我們要新增的類,i.isActive是控制每一項的關鍵。

注意:

        我們必須確保我們所遍歷的數組裡有isActive屬性,並且已經為其賦初值。否則我們需要手動為其加上isActive屬性。

var obj = {
    isActive:false,
   }
resultful_list.push(obj);