首頁 > 軟體

vue中的for迴圈以及自定義指令解讀

2022-08-30 18:01:23

vue for迴圈及自定義指令

v-for

1.v-for用來回圈的陣列怎麼發生變化可以被vue檢測到:

push、pop、shift、unshift、splice、sort、reverse等方法可以被檢測到

vue對於這些方法的處理是重寫了這些方法,並在最後會觸發一次notify方法來通知這個array已經發生變化

vue還增加了兩個方法來觀測array的變化:

  • $set:如果直接設定array中的元素,不會觸發檢視的變化
this.selectArray[1] = 'newValue'  // 不會觸發檢視變化
this.selectArray.$set(1, 'newValue') // 會觸發檢視變化
  • $remove:是splice的語法糖,用來從目標元素中查詢並且刪除這個元素
let itemIndex = this.selectArray.indexOf(selectItem)
this.selectArray.splice(itemIndex,1) // 刪除這個元素
this.selectArray.$remove(selectItem) // 同樣效果,不用查詢index

vue不能檢測到下面陣列的變化:

使用索引設定元素:

this.selectArray[1] = 'newValue'

解決辦法:使用$set方法

修改資料的長度:

this.selectArray.length = 0

解決方法:使用空陣列來替換:this.selectArray = []

2.使用v-for遍歷物件

使用別名

<li v-for = "(key,value) in obj"> {{key}}-{{value}}</li>

不使用別名,使用$key

<li v-for = "value in obj"> {{$key}}-{{value}} </li>

注意:es5無法檢測到物件增加新屬性,所以vue提供了三個方法來監視物件屬性:

  • $add(key,value)
  • $set(key,value)
  • $delete(key)

自定義指令

Vue.directive('directiveName',{
    // 這裡就是指令物件的內部
    // 可以使用this來獲取有用的引數
    bind: () => {
        //  準備工作:新增事件處理器等
        dom.addEventListener........
    },
    update: (oldVal,newVal) => {
        // 值更新的時候的工作
        //  初始化的時候也會被呼叫
    },
    unbind: () => {
        // 清理工作,比如接觸bind新增的事件處理器
    }
})

Vue.directive('directiveName',(value) => {
    // 代替update函數
})
// 使用指令
<div directiveName="argumentValue"></div>

在指令物件中,可以只用this來獲取一些有用的引數:

  • this.el: 指令繫結的元素
  • this.vm:指令的上下文viewModel
  • this.expression: 指令的表示式
  • this.arg:指令的引數
  • this.name: 指令的名字
  • this.modifiers:一個物件,指令的修飾符
  • this.descriptor: 一個物件,指令的解析結果

vue自定義指令動態引數

通過自定義指令中的修飾符的key作為值,更改顯示的顏色

動態指令引數

當引數是動態的時候。

main.js

//當引數的值是動態的時候
Vue.directive('color2', {
  bind: function(el, binding) {
    el.style.color = binding.value;
  }
})
Vue.directive('color3', {
  bind: function(el, binding) {
    el.style.color = binding.arg;
  }
})

template.vue中

<template>
<div class="demo">
  <!-- value -->
  <p v-color2='purpleUser'><i class="el-icon-user-solid"></i></p>
  <p v-color2='redUser'><i class="el-icon-user-solid"></i></p>
  <p v-color2='greenUser'><i class="el-icon-user-solid"></i></p>
  <!-- arg -->
  <p v-color3:[purpleUser]><i class="el-icon-user-solid"></i></p>
  <p v-color3:[redUser]><i class="el-icon-user-solid"></i></p>
  <p v-color3:[greenUser]><i class="el-icon-user-solid"></i></p>
</div>
</template>
<script>
export default {
  data() {
    return {
      purpleUser: 'purple',
      redUser: 'red',
      greenUser: 'green'
    }
  },
  created() {},
  methods: {}
}
</script>
<style lange='scss' scoped>
p {
  display: inline-block;
  font-size: 40px;
}
</style>

引數是靜態的,將key的值作為value,改變顏色

main.js

Vue.directive('color', {
  bind: function(el, binding) {
    const color = Object.keys(binding.modifiers)[0]; //將key的值作為value,改變顏色,Object.keys獲取key的值;
    el.style.color = color;
  }
})

template.vue中

<template>
<div class="demo">
  <p v-color.purple><i class="el-icon-user-solid"></i></p>
  <p v-color.red><i class="el-icon-user-solid"></i></p>
  <p v-color.green><i class="el-icon-user-solid"></i></p>
</div>
</template>
<script>
export default {
  data() {
    return {}
  },
  created() {},
  methods: {}
}
</script>
<style lange='scss' scoped>
p {
  display: inline-block;
  font-size: 40px;
}
</style>

以上的方法,最終實現效果是一樣的。

好了,這些僅為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com