自定义指令

自定义指令 - 基础语法

自定义指令_第1张图片

1.全局注册

App.vue
<template>
  <div>
    <h1>自定义指令h1>
    <input v-focus ref="inp" type="text"> 
  div>
template>

<script>
export default {
  // mounted () {
  //   this.$refs.inp.focus()
  // }
}
script>
main.js
import Vue from 'vue'
import App from './App.vue'

Vue.config.productionTip = false

//用指令:
//1.全局注册指令
Vue.directive('focus',{
  //这里可以写一些钩子,相关的生命周期函数
  //inserted会在指令所在的元素,被插入到我们的页面中时触发
  inserted (el) {
    //el 就是指令所绑定的元素
    // console.log(el)
    el.focus()
  }
})

new Vue({
  render: h => h(App),
}).$mount('#app')

2.局部注册

<template>
  <div>
    <h1>自定义指令h1>
    <input v-focus ref="inp" type="text"> 
  div>
template>

<script>
export default {
  // mounted () {
  //   this.$refs.inp.focus()
  // }

  //2.局部注册指令
  directives:{
    //要实现一个focus自动聚焦,就直接把focus这个名字往这边一丢
    //指令名:指令的配置项
    focus:{
      inserted (el) {
        el.focus()
      }
    }
  }
}
script>

指令的值

需求:实现一个color指令 - 传入不同的颜色,给标签设置文字颜色

  • 语法:在绑定指令时,可以通过“等号”的形式为指令绑定具体的参数值
    在这里插入图片描述
  • 通过binding.value可以拿到指令值,指令值修改会触发updata函数
    自定义指令_第2张图片

el是指令所绑定的元素,binging是额外的配置项,在这个配置项当中,通过.value是可以去拿到指令的值的,所以一旦拿到指令的值,一进页面(inserted)就做一件事情:立刻将bingding.value(就是你绑定的项的值),赋值给了el.style.color

App.vue
<template>
	<div>
		<h1 v-color=“color1”>指令的值1h1>
		<h1 v-color='color2'>指令的值2div>
<template>
<script>
export default {
	data () {
		return {
			color1:'red',
			color2:'green'
		}
	},
	directives:{//定义局内
		color:{
		//1.inserted 提供的是元素被添加到页面中是的逻辑(所以inserted会在元素被加入到页面中的时候触发)
			inserted (el) {
				//console.log(el,binding);
				//希望传入不同的值的时候,它的元素标签的颜色是不一样的
				//一红一绿
				//可以通过bindding.value拿到这些不同颜色的值
				el.style.color = binding.value
			}//2. updata 会在指令的值修改的时候触发,需要提供的是,值变化后,dom更新的逻辑
			updata (el binging){
				console.log('指令的值被修改了')//当color1/2的值一修改,就会显示这句话
				el.style.color = binding.value
			}
		}
	}
}
script>
<style>
style>

自定义指令_第3张图片

自定义指令进阶(封装v-loading)

场景:shi’jishiji开发过程中,发送请求需要时间,在请求的数据未回来时,页面会处于空白状态 => 用户体验不好
需求:封装一个v-loading指令,实现加载中的效果
自定义指令_第4张图片

分析:
1.本质loading效果就是一个蒙层,盖在了盒子上
2.数据请求中,开启loading状态,添加蒙层
3.数据请求完毕,关闭loading状态,移出蒙层

实现:
1.准备一个loading类,通过伪元素定位,设置宽高,实现蒙层
2.开启关闭loading状态(添加移除蒙层),本质只需要添加移出类即可
3.结合自定义指令的语法进行封装复用

<template>
  <div class="main">
    <div class="box" v-loading="isLoading">
      <ul>
        <li v-for="item in list" :key="item.id" class="news">
          <div class="left">
            <div class="title">{{ item.title }}div>
            <div class="info">
              <span>{{ item.source }}span>
              <span>{{ item.time }}span>
            div>
          div>

          <div class="right">
            <img :src="item.img" alt="">
          div>
        li>
      ul>
    div>
  div>
template>

<script>
// 安装axios =>  yarn add axios
import axios from 'axios'

// 接口地址:http://hmajax.itheima.net/api/news
// 请求方式:get
export default {
  data () {
    return {
      list: [],
      isLoading:true//只写个这个,并没有加载页面的图案,因为没有给他写逻辑,所以在下面写一个directives
    }
  },
  async created () {
    // 1. 发送请求获取数据
    const res = await axios.get('http://hmajax.itheima.net/api/news')
    
    setTimeout(() => {
      // 2. 更新到 list 中
      this.list = res.data.data
      //请求完数据,全都更新完之后,结束loading
      this.isLoading = false
    }, 2000)
  },
  directives:{
    loading:{
      inserted (el,binding){
        binding.value ? el.classList.add('loading') : el.classList.remove('loading')
      },
      update (el,binding) {
        binding.value ? el.classList.add('loading') : el.classList.remove('loading')
      }
    }
  }
}
script>

<style>
/* 伪类 - 蒙层效果 */
.loading:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff url('./loading.gif') no-repeat center;
}

/* .box2 {
  width: 400px;
  height: 400px;
  border: 2px solid #000;
  position: relative;
} */

.box {
  width: 800px;
  min-height: 500px;
  border: 3px solid orange;
  border-radius: 5px;
  position: relative;
}
.news {
  display: flex;
  height: 120px;
  width: 600px;
  margin: 0 auto;
  padding: 20px 0;
  cursor: pointer;
}
.news .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 10px;
}
.news .left .title {
  font-size: 20px;
}
.news .left .info {
  color: #999999;
}
.news .left .info span {
  margin-right: 20px;
}
.news .right {
  width: 160px;
  height: 120px;
}
.news .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
style>

自定义指令_第5张图片
自定义指令_第6张图片

总结
自定义指令_第7张图片

你可能感兴趣的:(vue.js,前端,node.js,前端框架)