1️⃣ 自定义指令

我们可以自己写一个自定义指令去操作 DOM 元素,以达到代码复用的目的。注意,在 Vue 中,代码复用和抽象的主要形式是组件。然而,有的情况下,你仍然需要对普通 DOM 元素进行底层操作,这时候就会用到自定义指令。

  1. 1. 自定义指令写在 vue directive

2️⃣ 全局注册指令

  1. // loading: 自定义指令的名字 {}: 自定义指令的配置
  2. Vue.directive("loading", {});

image.png

2️⃣ 局部注册指令

image.png

1️⃣ 钩子函数

自定义指令对象提供了钩子函数供我们使用,这些钩子函数都为可选。

2️⃣ bind()

只调用一次,指令第一次绑定到元素时调用。在这里可以进行一次性的初始化设置。

2️⃣ inserted()

被绑定元素插入父节点时调用 ( 仅保证父节点存在,但不一定已被插入文档中 )。

2️⃣ update()

所在组件的 VNode 更新时调用,但是可能发生在其子 VNode 更新之前。指令的值可能发生了改变,也可能没有。但是你可以通过比较更新前后的值来忽略不必要的模板更新 (详细的钩子函数参数见下)。

2️⃣ componentUpdated()

指令所在组件的 VNode 及其子 VNode 全部更新后调用。

2️⃣ unbind()

只调用一次,指令与元素解绑时调用 ( 被绑定的 DOM 元素被 Vue 移除 )。

1️⃣ 钩子函数参数

el:指令所绑定的元素,可以用来直接操作 DOM。
binding:对象,包含以下属性:

  1. 1. name:指令名,不包括 v- 前缀。
  2. 2. value:指令的绑定值,例如:v-loading="10+20" 中,绑定值为 30
  3. 3. oldValue:指令绑定的前一个值,仅在 update componentUpdated 钩子中可用。无论值是否改变都可用。
  4. 4. expression:字符串形式的指令表达式。例如 v-loading="10+20"" 中,表达式为 "10+20"。
  5. 5. arg:传给指令的参数,可选。例如 v-loading:one 中,参数为 "one"。
  6. 6. modifiers:一个包含修饰符的对象。例如:v-loading:one.a.b.c 中,修饰符对象为 {a: true, b: true, c: true}

vnode:Vue 编译生成的虚拟节点。
oldVnode:上一个虚拟节点,仅在 update 和 componentUpdated 钩子中可用。

  1. // <h1 v-dir:a:b.c.d="{one: 100, two: 200}">H1</h1>
  2. export default {
  3. bind(el, binding, vnode, oldVnode) {
  4. console.log(el); // h1 元素
  5. const { name, value, oldValue, expression, arg, modifiers } = binding;
  6. console.log("name", name); // dir
  7. console.log("value", value); // {one: 100, two: 200}
  8. console.log("oldValue", oldValue); // undefined
  9. console.log("expression", expression); // { one: 100, two: 200 }
  10. console.log("arg", arg); // a:b
  11. console.log("modifiers", modifiers); // {c: true, d: true}
  12. console.log(vnode);
  13. // VNode{tag: 'h1', data: {…}, children: Array(1), text: undefined, elm: h1,…}
  14. console.log(oldVnode);
  15. // VNode{tag: '', data: {…}, children: Array(0), text: undefined, elm: undefined,…}
  16. },
  17. };
  1. <template>
  2. <div id="app">
  3. <!-- 可以传入确定的值 -->
  4. <!-- <div v-dir:arg1:arg2.a.b="100"></div> -->
  5. <!-- 也可以传入计算的值 -->
  6. <!-- <div v-dir:arg1:arg2.a.b="10 + 20"></div> -->
  7. <!-- 也可以传入数组 -->
  8. <!-- <div v-dir:arg1:arg2.a.b="[100, 200]"></div> -->
  9. <!-- 也可以传入对象 -->
  10. <div v-dir:arg1:arg2.a.b="{ one: 100, two: 200 }"></div>
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {};
  17. },
  18. };
  19. </script>

image.png

2️⃣ 练习

3️⃣ 模拟 v-show

  1. <!-- >>>>>>>>>> App.vue >>>>>>>>>> -->
  2. <template>
  3. <div id="app">
  4. <div v-myShowOne="true">myShowOne</div>
  5. <div v-myShowTwo="false">myShowTwo</div>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. directives: {
  11. // 普通形式
  12. myShowOne: {
  13. bind(el, binding) {
  14. var display = binding.value ? "" : "none";
  15. el.style.display = display;
  16. },
  17. update(el, binding) {
  18. var display = binding.value ? "" : "none";
  19. el.style.display = display;
  20. },
  21. },
  22. // 函数简写形式
  23. myShowTwo(el, binding) {
  24. var display = binding.value ? "" : "none";
  25. el.style.display = display;
  26. },
  27. },
  28. };
  29. </script>

image.png

3️⃣ 模拟 v-model

  1. // 1. 通过绑定的数据,给元素设置value
  2. // 2. 当触发input事件时,去更改数据的值
  3. // 3. 更改数据后,同步input的value值
  4. Vue.directive("mymodel", {
  5. bind(el, binding, vnode) {
  6. const vm = vnode.context;
  7. const { value, expression } = binding;
  8. el.value = value;
  9. el.oninput = function (e) {
  10. const inputVal = el.value;
  11. vm[expression] = inputVal;
  12. };
  13. },
  14. update(el, binding) {
  15. const { value } = binding;
  16. el.value = value;
  17. },
  18. });

2️⃣ 动态指令参数

指令的参数可以是动态的。例如,在 v-mydirective:[argument]="value" 中,argument 参数可以根据组件实例数据进行更新!这使得自定义指令可以在应用中被灵活使用。

  1. <template>
  2. <div id="app" v-position:[direction]="200"></div>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. direction: "top",
  9. };
  10. },
  11. directives: {
  12. position: {
  13. bind(el, binding) {
  14. el.style.position = "fixed";
  15. const { arg } = binding;
  16. el.style[arg] = binding.value + "px";
  17. },
  18. },
  19. },
  20. };
  21. </script>
  22. <style scoped>
  23. #app {
  24. width: 100px;
  25. height: 100px;
  26. background-color: orange;
  27. }
  28. </style>

image.png

2️⃣ 函数简写

在很多时候,你可能想在 bind 和 update 时触发相同行为,而不关心其它的钩子。比如这样写:

  1. // 自定义 v-show 的函数简写形式
  2. export default {
  3. directives: {
  4. myShow(el, binding) {
  5. var display = binding.value ? "" : "none";
  6. el.style.display = display;
  7. },
  8. },
  9. }

2️⃣ 对象字面量

如果自定义指令需要多个值,可以传入一个 JS 对象字面量。指令函数能够接受所有合法的 JS 表达式。

  1. <!-- >>>>>>>>>> App.vue >>>>>>>>>> -->
  2. <template>
  3. <div id="app" v-dome="{ one: 1, two: 2 }"></div>
  4. </template>
  5. <script>
  6. export default {
  7. directives: {
  8. dome: {
  9. bind(el, binding) {
  10. console.log(el);
  11. console.log(binding.value.one); // 1
  12. console.log(binding.value.two); // 2
  13. },
  14. },
  15. },
  16. };
  17. </script>