Vue常用指令及动态绑定属性

Vue源码下载:

GitHub - vuejs/vue: 🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.https://github.com/vuejs/vue

下载Tags最新版本(release版本)。

Vue生命周期函数

 VSCode中自定义模板设置:文件 - > 首选项 - > 用户代码片段,打开html.json文件添加如下内容:

"Vue": {
		"prefix": "vue",
		"body": [
			"<div></div>",
			"<script>",
			"const app = new Vue({",
				"el:'#app',",
				"data:{",
					"}",
				"})",
			"</script>"
		]
	}

 则在html文档中输入vue即可快速成如下内容:

<div></div>
  <script>
  const app = new Vue({
    el:'#app',
    data:{}
  })
  </script>

同理,在vue.json文件中可以对vue模板进行设置。

vue中的常用指令:

<div id="app">
    <h2>{{message}}</h2>
    <h2 v-once>{{message}}</h2>
    <h2 v-html="url"></h2>
    <h2 v-text="message">Vue</h2>
    <h2 v-pre>{{message}}</h2>
  </div>
  <script src="../js/vue.js"></script>
  <script>
  const app = new Vue({
    el:'#app',
    data:{
      message:'你好啊!',
      url:'<a href="http://www.baidu.com">百度一下</a>'
    }
  })
  </script>

 动态绑定属性:v-bind:

动态绑定class、src、href、style

<div id="app">
    <h2  class="title" :class="{active: isActive,line:isLine}">{{message}}</h2>
    <h2  class="title" :class="getClasses()">{{message}}</h2>
    <h2  class="title" :class="['active','line']">{{message}}</h2>
    <h2  :style="{fontSize:finalSize+'px',color:finalColor}">{{message}}</h2>
    <button v-on:click = "btnClick">状态切换</button>
    <ul>
      <li :class="{click:isClick}" v-for = "(item,index) in movies" @click="liClick">{{index}}-{{item}}</li>
    </ul>
    <a :href="aHref">斗罗大陆</a>
    <img v-bind:src="imgURL" sizes="10%">
  </div>
  <script src="../js/vue.js"></script>
  <script>
  const app = new Vue({
    el:'#app',
    data:{
      message:'v-bind',
      imgURL:'https://game.gtimg.cn/images/yxzj/coming/v2/skins//image/20210218/16136418483037.jpg',
      aHref:'https://fantuan.tv/vodplay/132401-1-201.html',
      isActive:true,
      isLine:false,
      movies:['钢铁侠','绿巨人','美国队长','雷神','复仇者联盟'],
      isClick:true,
      finalSize:50,
      finalColor:'yellow'
    },
    methods:{
      btnClick(){
        if(this.isActive){
          this.isActive = false;
          this.isLine = true;
        }else{
          this.isActive = true;
          this.isLine = false;
        }
      },
      getClasses(){
        return {active: this.isActive, line: this.isLine};
      },
      liClick(){
        this.isClick = !this.isClick;
      }
    }
  })
  </script>

计算属性:一般应用于需要对基本数据进行处理之后再进行显示的场景。和methods相比,computed具有缓存功能,多次调用时,计算属性只需要执行一次。

  <div id="app">
    <h2>{{firstName}} {{lastName}}</h2>
    <h2>{{fullName}}</h2>
    <h2>总价格:{{totalPrice}}</h2>
  </div>
  <script src="../js/vue.js"></script>
  <script>
  const app = new Vue({
    el:'#app',
    data:{
      firstName:'Lebron',
      lastName:'James',
      books:[
        {id:110,name:'book1',price:119},
        {id:111,name:'book2',price:89},
        {id:112,name:'book3',price:150},
        {id:113,name:'book4',price:146},
        {id:114,name:'book5',price:79}
      ]
    },
    computed:{
      fullName:function () {
        return this.firstName + ' ' + this.lastName;
      },
      totalPrice(){
        let result = 0;
        for(let book of this.books){
          result += book.price;
        }
        return result;
      }

    },

  })
  </script>

<think>嗯,用户之前已经问过关于Vue框架的浏览器渲染部分,现在他们又转向了Vue指令,包括常用指令和如何自定义。看起来用户可能是在学习Vue的基础知识,尤其是模板语法和扩展功能。我需要先整理一下常用Vue指令,然后解释如何自定义指令。 首先,常用指令部分,用户可能知道一些基础指令,比如v-bind、v-model、v-for,但可能需要一个系统的总结,包括每个指令的用途、示例和注意事项。需要确保覆盖主要指令,比如条件渲染、列表渲染、事件处理、双向绑定等。 然后,自定义指令的部分,用户可能想了解如何扩展Vue的功能,满足特定需求。需要分步骤说明,从注册方式(全局和局部)到钩子函数,以及实际应用场景。可能需要举例,比如自动聚焦、权限控制这样的常见案例,让用户更容易理解。 要注意用户之前的问题涉及到浏览器渲染,所以在自定义指令部分可能需要提到与DOM操作相关的最佳实践,比如在哪个钩子函数中操作DOM,避免性能问题。另外,可能需要对比Vue 2和Vue 3在自定义指令上的区别,尤其是钩子函数名称的变化,这样用户在使用不同版本时不会混淆。 用户可能还有一些潜在的需求,比如如何确保自定义指令的高效性,或者如何测试自定义指令。不过根据当前问题,主要需要集中在基本用法和实现上,可能不需要深入高级话题,但可以简要提及以供参考。 需要检查Vue的官方文档,确保提供的信息准确,尤其是钩子函数的参数和生命周期。同时,保持示例代码简洁,用中文注释帮助理解。另外,注意代码格式的正确性,比如使用正确的代码块标记,避免语法错误。 最后,总结部分要强调指令Vue开发中的重要性,以及合理使用指令带来的好处,比如代码复用和逻辑封装。同时提醒用户避免滥用自定义指令,保持代码的可维护性。</think>以下是对Vue指令体系的详细解析($\textcolor{blue}{重要特性}$ 用蓝色标注): --- ### 一、核心内置指令 1. **数据绑定类** - `v-bind`(简写`:`):动态绑定属性 ```vue <img :src="imageUrl" :alt="imgAlt"> ``` - $\textcolor{blue}{对象语法}$: ```vue <div :class="{ active: isActive, 'text-danger': hasError }"></div> ``` - `v-model`:双向数据绑定 ```vue <input v-model="message" type="text"> ``` - $\textcolor{blue}{修饰符}$:`.lazy`(输入结束后更新)、`.number`(自动转数字)、`.trim`(去除首尾空格) 2. **流程控制类** - `v-if` / `v-else-if` / `v-else`:条件渲染 ```vue <div v-if="type === 'A'">A</div> <div v-else-if="type === 'B'">B</div> <div v-else>Other</div> ``` - $\textcolor{blue}{与v-show区别}$:v-if是真实的条件渲染,v-show仅切换display属性 - `v-for`:列表渲染 ```vue <li v-for="(item, index) in items" :key="item.id"> {{ index }} - {{ item.text }} </li> ``` - $\textcolor{blue}{必须使用key}$:维持内部组件状态 3. **事件处理类** - `v-on`(简写`@`):事件监听 ```vue <button @click="handleClick">点击</button> ``` - $\textcolor{blue}{事件修饰符}$: ```vue <form @submit.prevent="onSubmit"></form> // 阻止默认行为 <div @click.stop="doThis"></div> // 阻止冒泡 ``` 4. **特殊功能类** - `v-show`:基于CSS的显示/隐藏 ```vue <h1 v-show="isVisible">Hello</h1> ``` - `v-html`:原始HTML插入($\textcolor{red}{慎用XSS风险}$) ```vue <div v-html="rawHtml"></div> ``` - `v-cloak`:解决初始化闪烁问题 ```css [v-cloak] { display: none; } ``` ```vue <div v-cloak>{{ message }}</div> ``` --- ### 二、自定义指令开发 1. **注册方式** - 全局注册: ```javascript // main.js Vue.directive('focus', { inserted: function (el) { el.focus() } }) ``` - 局部注册: ```javascript export default { directives: { pin: { bind: function (el, binding) { el.style.position = 'fixed' el.style[binding.arg] = binding.value + 'px' } } } } ``` 2. **钩子函数**($\textcolor{blue}{Vue 2.x生命周期}$) | 钩子名称 | 触发时机 | |----------------|----------------------------------| | `bind` | 指令第一次绑定到元素时 | | `inserted` | 被绑定元素插入父节点时 | | `update` | 所在组件VNode更新时 | | `componentUpdated` | 所在组件及子组件VNode全部更新后 | | `unbind` | 指令与元素解绑时 | $\textcolor{blue}{Vue 3.x变更}$: ```javascript const MyDirective = { created(el, binding, vnode) {}, // 替代bind beforeMount() {}, // 替代inserted mounted() {}, beforeUpdate() {}, // 新增 updated() {}, // 替代componentUpdated beforeUnmount() {}, // 新增 unmounted() {} // 替代unbind } ``` 3. **参数解析** ```javascript Vue.directive('demo', { bind(el, binding, vnode) { // binding对象包含: console.log(binding.value) // 指令绑定 console.log(binding.oldValue) // 前一个(仅在update钩子可用) console.log(binding.arg) // 指令参数(v-demo:foo中的"foo") console.log(binding.modifiers) // 修饰符对象(如v-demo.foo.bar) } }) ``` 4. **实用案例** - 自动聚焦指令: ```javascript Vue.directive('focus', { inserted(el) { el.focus() el.select() } }) ``` ```vue <input v-focus> ``` - 权限控制指令: ```javascript Vue.directive('permission', { inserted(el, binding) { const permissions = ['admin', 'editor'] if (!permissions.includes(binding.value)) { el.parentNode.removeChild(el) } } }) ``` ```vue <button v-permission="'admin'">删除</button> ``` - 拖拽指令($\textcolor{blue}{组合使用}$): ```javascript Vue.directive('drag', { inserted(el) { el.style.cursor = 'move' let startX, startY, initialX = 0, initialY = 0 el.addEventListener('mousedown', startDrag) function startDrag(e) { startX = e.clientX - initialX startY = e.clientY - initialY document.addEventListener('mousemove', drag) document.addEventListener('mouseup', stopDrag) } function drag(e) { initialX = e.clientX - startX initialY = e.clientY - startY el.style.transform = `translate(${initialX}px, ${initialY}px)` } function stopDrag() { document.removeEventListener('mousemove', drag) } } }) ``` --- ### 三、最佳实践指南 1. **使用场景判断** - 需要直接操作DOM时 - 需要封装可复用的DOM行为时 - 需要全局统一处理某些交互逻辑时 2. **性能优化** - 避免在指令中进行复杂计算 - 使用事件委托减少事件监听器数量 - 及时在`unbind`钩子中移除事件监听 3. **测试策略** ```javascript // 使用Jest测试指令 test('v-focus指令测试', () => { const wrapper = mount(Component, { directives: { Focus } }) expect(wrapper.find('input').element).toBe(document.activeElement) }) ``` --- ### 四、与Composition API结合(Vue 3) ```javascript // 使用setup语法 const vMyDirective = { mounted(el, binding) { // 使用响应式数据 const { value } = binding watchEffect(() => { el.style.color = value.color }) } } ``` 通过合理使用内置指令和自定义指令,可以显著提升Vue应用的开发效率和代码可维护性。对于复杂交互场景,建议优先考虑组件封装,指令更适合处理底层DOM操作。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值