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> <h2>我是父组件</h2> <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> <h2>我是child1组件</h2> <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>
#相關學習推薦:javascript影片教學
以上是精選vue面試題(重點)的詳細內容。更多資訊請關注PHP中文網其他相關文章!