后端人眼中的Vue(三)

news/2024/10/30 9:34:04/

五、高级

5.1、计算

5.1.1、computed

​ 在之前的购物车的案例当中,我们已经实现了购物车价格的计算,但是有些时候我们需要在其他很多地方也展示价格,所以每展示一次,我们就需要调用一次计算价格的方法,所以Vue给了一个计算属性,用于在Vue实例中完成相关业务计算的工作。

​ 日后在某个数据渲染到页面时,如果该数据需要经过业务处理之后,或者是需要多次渲染的时候,就可以使用computed这个属性。他最大的好处是可以提升Vue的运行性能,使用computed进行相关计算处理,会将第一次计算结果进行缓存,便于日后页面多次使用。

<!DOCTYPE html>
<html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title></title><script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head><body><!--computed:  计算属性  推荐作用:  用来在vue实例中完成相关业务计算工作    日后在将某个数据渲染页面时如果该数据需要经过业务处理之后再渲染就可以使用computed好处:  提升vue运行性能  主要使用computed进行计算相关处理 会将第一次计算结果进行缓存,便于日后页面多次使用使用:  {{属性名}}--><div id='app'><h1>{{msg}} {{counts}} {{counts}} {{counts}}{{counts}}{{counts}}{{counts}}{{counts}}</h1></div>
</body></html>
<script>new Vue({el: '#app',data: {msg: "购物车案例之computed",count:0,},methods: {},computed: { //计算属性counts() {console.log("computed.counts----------------------");return this.count + 10;},}}); 
</script>

image-20230102151335399

可以看到,他只调用了一次,提高了性能。

5.2、事件修饰符

修饰符是用来喝事件连用,可以用来决定事件触发条件或者是阻止事件触发的机制,Vue官方给了四种常见的事件修饰符:

  1. .stop:用来阻止事件冒泡。
  2. .prevent:用来阻止事件或者标签的默认行为。
  3. .self:只监听自身标签触发的事件。
  4. .once:该事件只触发一次。

5.2.1、.stop

事件冒泡:孩子的事件会扩散到父亲的事件中,导致父亲的事件也触发了。他的语法是@事件名事件修饰符="事件处理函数",类似@click.stop="test"

<!DOCTYPE html>
<html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title></title><script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head><body><div id='app'><h3>stop修饰符</h3><div style="width: 200px;height: 200px;background: red" @click="parent"><div style="width: 100px;height: 100px;background: aquamarine" @click.stop="child"><div style="width: 50px;height: 50px;background:royalblue" @click="child1"></div></div></div></div>
</body></html>
<script>new Vue({el:"#app",data:{msg:"事件修饰符"},methods:{test(){console.log("test");},parent(){console.log("parent");},child(){console.log("child");},child1(){console.log("child1");},testa(){console.log("testa");}},computed:{},//用来在vue实例中定义一些列计算属性    {{属性名}}}); 
</script>

5.2.2、.prevent

<!DOCTYPE html>
<html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title></title><script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head><body><div id='app'><h3>prevent修饰符</h3><a href="http://www.baidu.com" @click.prevent="testa">点我</a><a href="javascript:;" @click.prevent="testa">点我</a></div>
</body></html>
<script>new Vue({el: '#app',data: {},methods: {},}); 
</script>

5.2.3、self

事件修饰符还可以连用,大概长这样@click.self.stop

<!DOCTYPE html>
<html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title></title><script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head><body><div id='app'><h3>self修饰符(事件修饰符可以连用)</h3><div style="width: 200px;height: 200px;background: red" @click.self="parent"><div style="width: 100px;height: 100px;background: aquamarine" @click.self.stop="child"><div style="width: 50px;height: 50px;background:royalblue" @click="child1"></div></div></div></div>
</body></html>
<script>new Vue({el: '#app',data: {},methods: {},}); 
</script>

5.3、按键修饰符

事件修饰符是可以对所有事件进行修饰,而按键修饰符只可以对键盘事件来进行修饰,按键修饰符同样可以连着修饰,Vue提供了一堆的按键修饰符:

  1. .enter:对回车键修饰。
  2. .tab:对键盘切换tab键修饰。
  3. .delete:对删除或者是退格键进行修饰。
  4. .esc:对键盘esc事件进行修饰。
  5. .space:对键盘空格键进行修饰。
  6. .up:对键盘方向键中的上键进行修饰。
  7. .down:对键盘方向键中的下键进行修饰。
  8. .left:对键盘方向键中的左键进行修饰。
  9. .right:对键盘方向键中的右键进行修饰。

5.4、数组常用操作

在操作数组的时候,有这几种常见的操作:

  1. push:会返回数组长度
  2. pop:会返回删除的值
  3. unshift:会返回数组长度
  4. shift :会返回删除的值
  5. splice:会返回新数组
  6. concat:会返回新数组
var arr = [1, 2, 3]
// 往数组最后一位添加一个数字
arr.push(4) // [1, 2, 3, 4]
// 删除数组最后一个数字
arr.pop()   // [1, 2, 3]
console.log(arr)
// 往数组第一位添加一个数字
arr.unshift(0)
console.log(arr)
// 删除数组第一个元素
arr.shift()
console.log(arr)
// splice
// 删除第一个元素
arr.splice(1, 2) 
console.log(arr)
arr.splice(1, 2, 2, 4, 5) 
console.log(arr)
// 合并数组
console.log([1, 6].concat([5, 7]))

数组去重:

	var arr2 = [1, 2, 3, 1, 6, 2, 3]//ES6consoloe.log([...new Set(arr2)])console.log(Array.from(new Set(arr2)))var newArray = [];for(var i=0; i<arr2.length; i++){if(newArray.indexOf(arr2[i])==-1){newArray.push(arr2[i])}}console.log(newArray)var newArray2 = [];var obj = {};for(var i=0; i<arr2.length; i++){if(!obj[arr2[i]]){ //如果不在obj中,就表示不重复的数据,就在对象中添加键值对obj[arr2[i]] = arr2[i]newArray2.push(arr2[i])}}console.log(newArray2)

5.5、本地存储

有些时候需要缓存一些数据

5.5.1、localStorage永久存储

// 添加数据;setItem的value值是字符串类型的数据
localStorage.setItem('name','张三')// 获取数据
localStorage.getItem('name'); // 张三
// 清空
localStorage.clear();

注意:

  1. 除非是主动删除,不然是不会自动删除的。
  2. 一般浏览器存储的大小是5M(5M = 1024 * 5kb)。

5.5.2、sessionStorage临时会话存储

// 添加数据;setItem的value值是字符串类型的数据
sessionStorage.setItem('name','张三')// 获取数据
sessionStorage.getItem('name'); // 张三
// 清空
sessionStorage.clear();

注意:

  1. 关闭浏览器会自动清空数据。
  2. 一般浏览器存储的大小是5M。

5.6、深入双向数据绑定原理

5.6.1、原理

双向数据绑定是Vue最独特的特性之一,是其非侵入性的响应式系统。数据模型仅仅是普通的 JavaScript 对象。而当你修改它们时,视图会进行更新。Vue里面是怎么做到的的呢?其实就是使用了Object.defineProperty 把Vue内的属性全部转成 getter/setterObject.defineProperty 是 ES5 中一个无法 shim 的特性,这也就是 Vue 不支持 IE8 以及更低版本浏览器的原因。

**vue双向数据绑定原理:借助Object.defineProperty()对数据进行劫持,并结合发布-订阅者模式,来实现双向数据绑定。**他的语法:

Object.defineProperty(obj, prop, desc)
1. `obj` 需要定义属性的当前对象
2. `prop` 当前需要定义的属性名
3. `desc` 属性描述符

通过Object.defineProperty()为对象定义属性,有两种形式,分别为数据描述符,存取描述符,下面分别描述两者的区别:

  1. value 表示它的默认值
  2. writable 如果为true标识可以被修改,如果为false标识不能被修改(默认值为false)
  3. configurable 描述属性是否配置,以及可否删除,可以认为是总开关 默认值 false(不可删除)
  4. enumerable 描述属性是否出现在for in 或者 Object.keys()的遍历中 默认值false(不能遍历)
let obj = {};
Object.defineProperty(obj, 'name', {value: '张三'
})
obj.name = '李四'
console.log(obj.name) // 张三
let obj = {};
Object.defineProperty(obj, 'name', {value: '张三',writable: true
})
obj.name = '李四'
console.log(obj.name)
let obj = {};Object.defineProperty(obj, 'name', {value: '张三',writable: true,configurable: true,enumerable: true})obj.name = '李四'// delete obj.nameconsole.log(obj.name) // 李四console.log(Object.keys(obj)) // ['name']

5.6.2、面试题

vue的双向数据绑定原理是什么?

  1. vue数据双向绑定是通过数据劫持结合“发布者-订阅者模式”的方式来实现的。
  2. vue是通过Object.defineProperty()来实现数据劫持,其中会有getter()和setter方法;当读取属性值时,就会触发getter()方法,在view中如果数据发生了变化,就会通过Object.defineProperty()对属性设置一个setter函数,当数据改变了就会来触发这个函数;

5.7、父子组件

5.7.1、父级向子级传递

在组件中,使用选项props来声明需要从父级接收到的数据。pros机制接受数据相当于自己组件data中声明了一个数据。只能父亲影响孩子,不可以孩子影响父亲。

props的值有两种方式:

  1. 字符串数组,数组中的字符串就是传递时的名称。
  2. 对象,对象可以设置传递时的类型(String,Number,Boolean,Array, Object,Date,Function,Symbol),也可以设置默认值等。
<body><div id="app1"><my-con1></my-con1></div>
</body><template id="template2"><section><h3>{{title}}B</h3><p>组件内容B</p><!-- my-con1组件内的aa组件 --> <aa v-bind:parent-txt="childtxt"></aa></section>
</template>
<script>var componentB = {template: '#template2',data() {return {title: 'zj',childtxt: 'child text'}},components: {'aa': {template: '<div>{{parentTxt}}</div>',props: ['parentTxt']}}}const vm1 = new Vue({el: '#app1',components: {'my-con1': componentB}})
</script>

5.7.2、子级向父级传递

<body><div id="app1"><my-con1></my-con1></div>
</body><template id="template2"><section><h3>{{title}}B</h3><p>组件内容B</p><aa v-bind:parent-txt="childtxt" v-on:changetitle="changeTitle"></aa></section>
</template>
<script>var componentB = {template: '#template2',data() {return {title: 'zj',childtxt: 'child text'}},components: {'aa': {template: '<div v-on:click="change">{{parentTxt}}</div>',props: ['parentTxt'],methods: {change() {this.$emit('changetitle', {a: 1})}}}},methods: {changeTitle(obj) {console.log(obj)this.title = obj.a}}}const vm1 = new Vue({el: '#app1',components: {'my-con1': componentB}})
</script>

5.7.3、非父子组件通讯

实际工作中如果遇到跨组件或者非父组件间的传递数据,那该怎么办?

  1. 可以使用中央事件总线,也就是一个中介来完成。
  2. 使用 Vuex 提供的功能。

比如我点击按钮1,改变按钮2的背景颜色。

1568942668557

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>Document</title><script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head><body><div id="app1"><my-con></my-con><my-con1></my-con1></div>
</body><template id="template1"><button @click="click1">按钮1</button>
</template>
<template id="template2"><button @click="click2" :style="{backgroundColor: fontColor}">按钮2</button>
</template>
<script>const bus = new Vue();const componentA = {template: '#template1',methods: {click1() {// 点击按钮1bus.$emit('xxx', this.getRandomColor());},getRandomColor() {return `rgb(${this.getRandomNum()},${this.getRandomNum()},${this.getRandomNum()})`},getRandomNum() {return Math.floor(Math.random() * 256)}}}const componentB = {template: '#template2',data() {return {fontColor: ''}},methods: {click2() {// 点击按钮2}},mounted() {bus.$on('xxx', (color) => {console.log(color)this.fontColor = color})}}const vm1 = new Vue({el: '#app1',components: {myCon: componentA,myCon1: componentB}})
</script></html>

5.8、插槽slot

5.8.1、概述

slot翻译为插槽,组件的插槽:

  1. 组件的插槽也是为了让我们封装的组件更加具有扩展性。

  2. 让使用者可以决定组件内容的一些内容到底展示什么。

1568945654125
1568945654125

1568945657300

1568945660433

5.8.2、使用slot

如何去封装这类的组件呢?

  1. 它们也很多区别,但是也有很多共性。
  2. 如果我们每一个单独去封装一个组件,显然不合适:比如每个页面都返回,这部分内容我们就要重复去封装。
  3. 但是如果我们封装成一个,好像也不合理:有些左侧是菜单,有些是返回,有些中间是搜索,有些是文字,等等。

如何封装合适呢?抽取共性,保留不同

  1. 最好的封装方式就是将共性抽取到组件中,将不同暴露为插槽。
  2. 一旦我们预留了插槽,就可以让使用者根据自己的需求,决定插槽中插入什么内容。
  3. 是搜索框,还是文字,还是菜单。由调用者自己来决定。

5.8.3、匿名插槽

在子组件中,使用特殊的元素<slot>就可以为子组件开启一个插槽。

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>Document</title><style></style><script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body><div id="app1"><my-con></my-con><my-con><h2>我是h2标签的内容</h2><p>我是p标签的内容</p></my-con></div>
</body><template id="template1"><div><slot>我是插槽中的默认内容!!</slot></div>
</template>
<script>var componentA = {template: '#template1',}const vm1 = new Vue({el: '#app1',data: {},components: {myCon: componentA}})
</script></html>

1568946418410

5.8.4、具名插槽

当子组件的功能复杂时,子组件的插槽可能并非是一个,他有以下几种情况:

  1. 比如我们封装一个导航栏的子组件,可能就需要三个插槽,分别代表左边、中间、右边。
  2. 那么,外面在给插槽插入内容时,如何区分插入的是哪一个呢?
  3. 这个时候,我们就需要给插槽起一个名字

这个时候,我们就需要具名插槽,我们只需要给slot元素一个name属性即可:<slot name='myslot'></slot>

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>Document</title><style></style><script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body><div id="app1"><my-con><div slot="left">左侧</div><div slot="right">右侧</div><div slot="center">中间</div></my-con></div>
</body><template id="template1"><div><slot name="left">我是左侧插槽中的默认内容!!</slot><slot name="center">我是中间侧插槽中的默认内容!!</slot><slot name="right">我是右侧插槽中的默认内容!!</slot></div>
</template>
<script>var componentA = {template: '#template1',}const vm1 = new Vue({el: '#app1',data: {},components: {myCon: componentA}})
</script></html>

5.8.5、作用域插槽

默认情况下,父组件使用子组件,插槽数据默认是拿父组件的数据,而不是子组件拿数据。

作用域插槽在父组件使用我们的子组件时, 插槽的数据从子组件中拿到数据,而不是从父组件拿到。

在这里插入图片描述

// 1、基本写法
<one-comp><button slot="btn" slot-scope="scope">按钮{{scope.msg}}</button>
</one-comp>// 2、基本写法之模板写法
<one-comp><template slot="btn" slot-scope="scope"><button>按钮{{scope.msg}}</button></template>
</one-comp>// 3、指令写法
<one-comp v-slot:btn="scope"><button>按钮{{scope.msg}}</button>
</one-comp>// 4、指令写法之模板写法
<one-comp><template v-slot:btn="scope"><button>按钮{{scope.msg}}</button></template>
</one-comp>

六、axious异步请求

6.1、ajax和axious区别

  1. ajax:用来在页面上发起异步请求到后端服务,并将后端服务相应的数据渲染到页面上。jQuery里面推荐ajax技术。
  2. axious:前段异步3请求库,和ajax类似。在vue中并不推荐使用jQuery框架,axious是Vue官方推荐的一种异步请求技术,用于在前端发起一个异步请求,请求后页面不动,相应回来刷新页面。

6.2、axious

官网地址:http://www.axios-js.com/,使用axious的过程:

  1. 下载axious核心js文件。
  2. 页面引用axious核心js文件。
  3. 可以开始使用发异步请求。

6.2.1、get请求

// 为给定 ID 的 user 创建请求
axios.get('/user?ID=12345').then(function (response) { //请求成功后的处理console.log(response);}).catch(function (error) { //请求失败后的处理console.log(error);});

6.2.2、post请求

axios.post('/user', { //参数使用jsonfirstName: 'Fred',lastName: 'Flintstone'}).then(function (response) {console.log(response);}).catch(function (error) {console.log(error);});

6.2.3、axious默认实例

axious还支持通过默认实例来发异步请求,这也就完全解耦了。

const instance = axios.create({baseURL: 'http://localhost:8080/', // 公共部分urltimeout: 1000,headers: {'X-Custom-Header': 'foobar'}
});

6.3、axious拦截器

6.3.1、请求拦截器

拦截器用来将axious的公共参数,相应公共处理交给拦截器处理,减少axious发送请求时代码冗余。

    //请求拦截器instance.interceptors.request.use(function (config) {if(config.url.indexOf("?")==-1){ // 若原来没有参数就拼"?"config.url+="?token=1234"}else{config.url +="&token=1234"; // 否则拼"&"}return config;});

6.3.2、相应拦截器

当后端服务出现异常的时候,可以用相应拦截器来处理错误的情况。

    //响应拦截器instance.interceptors.response.use(function (response) {if(response.status==500){alert('服务器出现错误!');}return response;});

http://www.ppmy.cn/news/10315.html

相关文章

STM32系列单片机标准库移植FreeRTOS V10.4.6详解

文中所用到的资料下载地址 https://download.csdn.net/download/qq_20222919/87370679 最近看正点原子新录制了手把手教你学FreeRTOS的视频教程&#xff0c;看了一下教程发现视频里面讲的是使用HAL移植 FreeRTOS V10.4.6 版本&#xff0c;以前的标准库移植的是FreeRTOS V9.0 版…

Vue--》Vue3自定义组件以及新组件的使用讲解

目录 customRef Vue3提供的新组件 Fragment Teleport Suspense Vue3中全局API的改变 customRef 创建一个自定义的ref&#xff0c;并对其依赖项跟踪和更新触发进行显示控制。 <template><input type"text" v-model"keyword"><h3>…

网络安全等级保护定级指南 范围

声明 本文是学习github5.com 网站的报告而整理的学习笔记,分享出来希望更多人受益,如果存在侵权请及时联系我们 网络安全等级保护 为了配合《中华人民共和国网络安全法》的实施&#xff0c;适应云计算、移动互联、物联网、工业控制和大数据等新技术、新应用情况下网络安全等…

计算机组成原理_总线

计算机组成原理总目录总线概述 1. 总线介绍 我们知道计算机中有CPU、主存、辅存&#xff0c;以及打印机、键盘、鼠标等等的一些外设 那么各个设备之间肯定是要进行数据传输的&#xff0c;这就需要许多线路将它们连接起来 第一种方法&#xff1a;两两相联 外设数量越多&#xf…

Allegro174版本新功能介绍之去掉拷贝自动偏移功能

Allegro174版本新功能介绍之去掉拷贝自动偏移功能 Allegro升级到了174版本的时候,在用拷贝功能的时候,不管怎么拷贝都会出现偏差,即便是拷贝坐标的方式,如下图 那是因为174新增了一个自动粘贴的功能,按照下面的步骤可以去除自动粘贴的功能,具体操作如下 选择Setup选择Use…

RestTemplet+Ribbon实现负载均衡源码分析

为什么加上LoadBalanced&#xff0c;RestTemplate就有负载均衡的能力呢&#xff1f;源码分析&#xff1a; RestTemplate拦截器 首先看RestTemplate类&#xff0c;继承了InterceptingHttpAccessor&#xff0c;代码中有个类型为ClientHttpRequestInterceptor拦截器集合&#xf…

4645. 选数异或

给定一个长度为 n 的数列 A1,A2,,An 和一个非负整数 x&#xff0c;给定 m 次查询&#xff0c;每次询问能否从某个区间 [l,r] 中选择两个下标不同的数使得他们的异或等于 x。 输入格式 输入的第一行包含三个整数 n,m,x。 第二行包含 n 个整数 A1,A2,,An。 接下来 m 行&#x…

学习css3,使用代码实现一根心爱的二踢脚

2023春节快到了&#xff0c;虽然还在上班&#xff0c;但心情早已开始激动&#xff0c;感叹2022终将过去&#xff0c;喜迎2023兔年吧。让我以激动的心情&#xff0c;利用所学css3代码知识&#xff0c;实现一根心爱的二踢脚吧。 目录 1、实现思路 2、实现二踢脚的主体圆柱部分…