Vue 自定义指令

自定义指令的基本用法

和组件类似分全局注册和局部注册,区别就是把component换成了directive

全局注册
Vue.directive('focus',{
    //钩子函数 bind:  inserted:  update:  componentUpdated:  unbind:
    bind: function(){
        ..............
    }
})
var app = new Vue({
    el: '#app',
})


局部注册
var app = new Vue({
    el: '#app',
    directives: {
         focus: {
              bind: function(){
                    ...............
              }
         }
    } 
})

钩子函数

指令定义函数提供了几个钩子函数(可选):

  1. bind: 只调用一次,指令第一次绑定到元素时调用,用这个钩子函数可以定义一个在绑定时执行一次的初始化动作。
  2. inserted: 被绑定元素插入父节点时调用(父节点存在即可调用,不必存在于 document中)。
  3. update: 被绑定元素所在的模板更新时调用,而不论绑定值是否变化。通过比较更新前后的绑定值,可以忽略不必要的模板更新(详细的钩子函数参数见下)。
  4. componentUpdated: 被绑定元素所在模板完成一次更新周期时调用。
  5. unbind: 只调用一次, 指令与元素解绑时调用。

钩子函数的参数有:

  1. el: 指令所绑定的元素,可以用来直接操作 DOM 。
  2. binding: 一个对象,包含以下属性:
    • name: 指令名,不包括 v­ 前缀。
    • value: 指令的绑定值, 例如: v­-my­directive=”1 + 1”, value 的值是 2。
    • oldValue: 指令绑定的前一个值,仅在 update 和 componentUpdated
      钩子中可用。无论值是否改变都可用。
    • expression: 绑定值的字符串形式。 例如 v-­my­directive=”1 + 1” , expression 的值是“1 + 1”。
    • arg: 传给指令的参数。例如 v­-my­directive:foo, arg 的值是 “foo”。
    • modifiers: 一个包含修饰符的对象。 例如: v-­my­directive.foo.bar, 修饰符对象 modifiers 的值是 { foo: true, bar: true }。
  3. vnode: Vue 编译生成的虚拟节点。
  4. oldVnode: 上一个虚拟节点,仅在 update 和 componentUpdated 钩子中可用。

代码举例:

进入页面获取焦点:

举例:钩子函数的参数binding,包含的全部属性
------------------------------------------------------------------------------ var app = new Vue({ el: '#app', data: { abc: '我是自定义组件的value' }, directives: { focus: { inserted: function(el){ el.focus() } }, case: { bind: function(el,binding){ el.innerHTML = '属性name: ' + binding.name + '
' + '属性value: ' + binding.value + '
' + '属性expression: ' + binding.expression + '
' + '属性arg: ' + binding.arg + '
' + '属性modifiers: ' + JSON.stringify(binding.modifiers) + '
' } } } })

你可能感兴趣的:(Vue 自定义指令)