您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關vue面試題的案例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
V001-vuerouter是怎么傳值的
1.在路由處配置
path:'/detail/:id' 調用: this.$router.push({ path:'/home/${id}' })
在組件內通過this.$route.params.id
即可獲取。
【專題推薦】:2020年前端vue面試題大匯總(附答案)
2.在router-link
標簽中傳遞參數。
<router-link :to = { params:{ id:1 } }/>
也可通過:this.$route.params.id
獲取
這里通過router-link傳參方式是隱形傳參
3.另一種params的是通過params傳參,通過name配置路由。
//路由處: { path:'/home', name:'Home', component:Home } 調用: this.$router.push({ name:'Home', params:{ id:id } })
獲取:this.$route.params.id
4.通過query來傳遞參數,參數會在url后邊的?id=?中顯示
//路由處: { path:'/home', name:'Home', component:Home } 調用: this.$router.push({ path:'/home', query:{ id:id } })
獲取:this.$route.query.id
V002-v-if和v-for一起使用的弊端及解決辦法
由于v-for
的優先級比v-if
高,所以導致每循環一次就會去v-if一次,而v-if是通過創建和銷毀dom元素來控制元素的顯示與隱藏,所以就會不停的去創建和銷毀元素,造成頁面卡頓,性能下降。
解決辦法:
1.在v-for的外層或內層包裹一個元素來使用v-if
2.用computed處理
<ul> <li v-for="item in qdleaderArr" v-if="item.isActive" :key="item.id" > {{ item.name }} </li> </ul>
處理為:
computed: { qdleaderArrActive: function () { return this.qdleaderArr.filter(function (item) { return item.isActive }) } } <ul> <li v-for="item in qdleaderArrActive" :key="item.id" > {{ item.name }} </li> </ul>
V003-beforeDestory里面一般進行什么操作
beforedestoryed是組件銷毀之前執行的一個生命周期,在這個生命周期里,我們可以進行回調函數或定時器的清
①解綁自定義事件 event.$off
②消除定時器 ③解綁自定義的DOM事件 如window.scroll等
比如這個場景:日期在我點擊查詢的時候要存儲,刷新就讀內存,但是我點擊其他頁面再進來的時候,這個內存要清空
search(){ let time = { start: this.formSearch.beginSearchTime, end: this.formSearch.endSearchTime, timeRange: this.formSearch.timeRange, page: this.formSearch.page } localStorage.setItem('initTime',JSON.stringify(time)) } created () { let searchCarTime = JSON.parse(localStorage.getItem('initTime')) if (searchCarTime) { this.formSearch.beginSearchTime = searchCarTime.start this.formSearch.endSearchTime = searchCarTime.end, this.formSearch.timeRange = searchCarTime.timeRange this.formSearch.page = searchCarTime.page } }, beforeDestroy(){ localStorage.removeItem('initTime') }
V004-同級組件傳值
1.如果是兄弟組件,可通過父元素作為中間組件進行傳值
1.2 $emit
傳值,props接收
使用$emit將child1.vue的值給父組件,父組件將值傳給child2.vue,child2.vue使用props接收
parent.vue
<template> <div> <h3>我是父組件</h3> <child1 @handleClickChange="handleClickChangeTitle"></child1> <child2 :ptitle="title"></child2> </div> </template> <script> import child1 from "child1";//文件地址 import child2 from "child2";//文件地址 export default { data() { return { title: "" }; }, components: { child1, child2 }, methods: { handleClickChangeTitle(title){//將改方法傳遞給child1組件 this.title = title } } } </script>
child1.vue
<template> <div> <h3>我是child1組件</h3> <div> <input type="text"v-model="title"/> <button type="button" @click="handleClickChangeTitle(title)">更改title的值</button> <div>{{title}}</div> </div> </div> </template> <script> export default { data() { return { title: "" }; }, methods: { handleClickChangeTitle(title){ this.$emit("handleClickChange",title)//連接父組件的handleClickChange方法,同時將值傳遞給父組件 } } } </script>
child2.vue
<template> <div>{{ptitle}}</div> </template> <script> export default { //接收父組件穿過來的值ptitle props:{ptitle:{ type: String}} } </script>
2.通過創建一個bus,進行傳值
// 創建一個文件,定義bus中間件,并導出 const bus = new Vue() // 在一個組件中發送事件 bus.$emit('事件名稱', 傳遞的參數) // 在另一個組件中監聽事件 bus.$on('事件名稱', 得到傳過來的參數)
具體使用:在main.js同級目錄下新建bus.js文件
import Vue from 'vue' export default new Vue()
2、在組件a中傳出值
先引入bus.js
文件,再通過$emit
傳值
<template> <div @click="onfocus"></div> </template> <script> import Bus from '@/bus.js' export default{ methods:{ onfocus:function(fromid){ Bus.$emit('getisshow',{ show:true }) } } } </script>
3、在同級b組件中通過$on
接收
<script> import Bus from '@/bus.js' export default{ created(){ Bus.$on('getisshow',data => { console.log(data) //{show:true} }) } } </script>
關于vue面試題的案例分析就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。