欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

vue2中的keep-alive使用總結(jié)及注意事項(xiàng)

 更新時(shí)間:2022年08月24日 09:11:08   作者:龍恩0707  
vue2.0提供了一個(gè)keep-alive組件用來(lái)緩存組件,避免多次加載相應(yīng)的組件,減少性能消耗。本文給大家介紹vue2中的keep-alive使用總結(jié)及注意事項(xiàng),需要的朋友參考下吧

keep-alive 是Vue的內(nèi)置組件,能在組件切換過(guò)程中將狀態(tài)保留在內(nèi)存中,防止重復(fù)渲染DOM。結(jié)合vue-router中使用,可以緩存某個(gè)view的整個(gè)內(nèi)容。

基本使用如下:

<keep-alive>
 <component>
 <!-- 該組件將被緩存! -->
 </component>
</keep-alive>

一般有這樣的需求,當(dāng)我們第一次進(jìn)入列表頁(yè)需要請(qǐng)求一下數(shù)據(jù),當(dāng)我從列表頁(yè)進(jìn)入詳情頁(yè),詳情頁(yè)不緩存也需要請(qǐng)求下數(shù)據(jù),然后返回列表頁(yè)

有兩個(gè)情況:

1. 直接點(diǎn)擊瀏覽器的后退返回按鈕。

2. 點(diǎn)擊導(dǎo)航欄中的 /list的鏈接返回。

那么針對(duì)第一種情況下,我們直接通過(guò)后退按鈕時(shí),返回到列表頁(yè)(/list) 是不需要請(qǐng)求數(shù)據(jù)。

針對(duì)第二種情況下,我們通過(guò)鏈接返回到列表頁(yè)是需要請(qǐng)求數(shù)據(jù)。

所以這邊有三種情況:

1. 默認(rèn)進(jìn)來(lái)列表頁(yè)需要請(qǐng)求數(shù)據(jù)。

2. 進(jìn)入詳情頁(yè)后,通過(guò)瀏覽器默認(rèn)后退按鈕返回,是不需要ajax的請(qǐng)求的。

3. 進(jìn)入詳情頁(yè)后,通過(guò)點(diǎn)擊鏈接返回到列表頁(yè)后,也是需要發(fā)ajax請(qǐng)求的。

配置如下:

1. 入口文件 app.vue 的配置如下:

<!-- 緩存所有的頁(yè)面 -->
<keep-alive>
 <router-view v-if="$route.meta.keep_alive"></router-view>
</keep-alive>
<router-view v-if="!$route.meta.keep_alive"></router-view>

2. 在router中設(shè)置meta屬性,設(shè)置 keepAlive: true 表示需要使用緩存,false的話表示不需要使用緩存。且添加滾動(dòng)行為 scrollBehavior

router/index.js 的配置如下:

import Vue from 'vue';
import Router from 'vue-router';
// import HelloWorld from '@/views/HelloWorld';
Vue.use(Router);
const router = new Router({
 mode: 'history', // 訪問(wèn)路徑不帶井號(hào) 需要使用 history模式,才能使用 scrollBehavior
 base: '/page/app', // 配置單頁(yè)應(yīng)用的基路徑
 routes: [
 {
  path: '/',
  name: 'list',
  component: resolve => require(['@/views/list'], resolve), // 使用懶加載
  meta: {
  keepAlive: true // true 表示需要使用緩存
  }
 },
 {
  path: '/list',
  name: 'list',
  component: resolve => require(['@/views/list'], resolve), // 使用懶加載
  meta: {
  keepAlive: true // true 表示需要使用緩存 false表示不需要被緩存
  }
 },
 {
  path: '/detail',
  name: 'detail',
  component: resolve => require(['@/views/detail'], resolve) // 使用懶加載
 }
 ],
 scrollBehavior (to, from, savedPosition) {
 // 保存到 meta 中,備用
 to.meta.savedPosition = savedPosition;
 if (savedPosition) {
  return { x: 0, y: 0 };
 }
 return {};
 }
});
export default router;

3. list.vue 代碼如下:

<template>
 <div class="hello">
 <h1>vue</h1>
 <h2>{{msg}}</h2>
 <router-link to="/detail">跳轉(zhuǎn)到detail頁(yè)</router-link>
 </div>
</template>

<script>
export default {
 name: 'helloworld',
 data () {
 return {
  msg: 'Welcome to Your Vue.js App'
 };
 },
 methods: {
 ajaxRequest() {
  const obj = {
  'aa': 1
  };
  Promise.all([this.$store.dispatch('testUrl', obj)]).then((res) => {
  console.log(res);
  });
 }
 },
 beforeRouteEnter(to, from, next) {
 next(vm => {
  /*
  如果 to.meta.savedPosition === undefined 說(shuō)明是刷新頁(yè)面或可以叫第一次進(jìn)入頁(yè)面 需要刷新數(shù)據(jù)
  如果savedPosition === null, 那么說(shuō)明是點(diǎn)擊了導(dǎo)航鏈接;
  此時(shí)需要刷新數(shù)據(jù),獲取新的列表內(nèi)容。
  否則的話 什么都不做,直接使用 keep-alive中的緩存
  */
  if (to.meta.savedPosition === undefined) {
  vm.ajaxRequest();
  }
  if (to.meta.savedPosition === null) {
  vm.ajaxRequest();
  }
 })
 }
};
</script>

4. detail.vue 代碼如下:

<template>
 <div class="list">
 <h1>{{msg}}</h1>
 <router-link to="/list">返回列表頁(yè)</router-link>
 </div>
</template>
<script>
export default {
 name: 'list',
 data () {
 return {
  msg: 'Welcome to Your Vue.js App'
 };
 },
 created() {
 this.ajaxRequest();
 },
 methods: {
 ajaxRequest() {
  const obj = {
  'aa': 1
  };
  Promise.all([this.$store.dispatch('withdary', obj)]).then((res) => {
  console.log(res);
  });
 }
 }
};
</script>

二:使用router.meta 擴(kuò)展

假設(shè)現(xiàn)在有3個(gè)頁(yè)面,需求如下:

1. 默認(rèn)有A頁(yè)面,A頁(yè)面進(jìn)來(lái)需要一個(gè)請(qǐng)求。

2. B頁(yè)面跳轉(zhuǎn)到A頁(yè)面,A頁(yè)面不需要重新請(qǐng)求。

3. C頁(yè)面跳轉(zhuǎn)到A頁(yè)面,A頁(yè)面需要重新請(qǐng)求。

實(shí)現(xiàn)方式如下:

在 A 路由里面設(shè)置 meta 屬性:

{
 path: '/a',
 name: 'A',
 component: resolve => require(['@/views/a'], resolve),
 meta: {
 keepAlive: true // true 表示需要使用緩存
 }
}

所以router/index下的所有代碼變?yōu)槿缦拢?/p>

import Vue from 'vue';
import Router from 'vue-router';
// import HelloWorld from '@/views/HelloWorld';

Vue.use(Router);

const router = new Router({
 mode: 'history', // 訪問(wèn)路徑不帶井號(hào) 需要使用 history模式,才能使用 scrollBehavior
 base: '/page/app', // 配置單頁(yè)應(yīng)用的基路徑
 routes: [
 {
  path: '/',
  name: 'list',
  component: resolve => require(['@/views/list'], resolve), // 使用懶加載
  meta: {
  keepAlive: true // true 表示需要使用緩存
  }
 },
 {
  path: '/list',
  name: 'list',
  component: resolve => require(['@/views/list'], resolve), // 使用懶加載
  meta: {
  keepAlive: true // true 表示需要使用緩存 false表示不需要被緩存
  }
 },
 {
  path: '/detail',
  name: 'detail',
  component: resolve => require(['@/views/detail'], resolve) // 使用懶加載
 },
 {
  path: '/a',
  name: 'A',
  component: resolve => require(['@/views/a'], resolve),
  meta: {
  keepAlive: true // true 表示需要使用緩存
  }
 },
 {
  path: '/b',
  name: 'B',
  component: resolve => require(['@/views/b'], resolve)
 },
 {
  path: '/c',
  name: 'C',
  component: resolve => require(['@/views/c'], resolve)
 }
 ],
 scrollBehavior (to, from, savedPosition) {
 // 保存到 meta 中,備用
 to.meta.savedPosition = savedPosition;
 if (savedPosition) {
  return { x: 0, y: 0 };
 }
 return {};
 }
});
export default router;

在 B 組件里面設(shè)置 beforeRouteLeave

beforeRouteLeave(to, from, next) {
 // 設(shè)置下一個(gè)路由meta
 to.meta.keepAlive = true; // 讓A緩存,不請(qǐng)求數(shù)據(jù)
 next(); // 跳轉(zhuǎn)到A頁(yè)面
}

B組件所有代碼如下:

<template>
 <div class="list">
 <h1>{{msg}}</h1>
 <router-link to="/a">返回a頁(yè)面</router-link>
 </div>
</template>

<script>
export default {
 name: 'list',
 data () {
 return {
  msg: 'Welcome to B Page'
 };
 },
 created() {},
 methods: {
 },
 beforeRouteLeave(to, from, next) {
 // 設(shè)置下一個(gè)路由meta
 to.meta.keepAlive = true; // 讓A緩存,不請(qǐng)求數(shù)據(jù)
 next(); // 跳轉(zhuǎn)到A頁(yè)面
 }
};
</script>

在 C 組件里面設(shè)置 beforeRouteLeave:

beforeRouteLeave(to, from, next) {
 // 設(shè)置下一個(gè)路由meta
 to.meta.keepAlive = false; // 讓A不緩存,重新請(qǐng)求數(shù)據(jù)
 console.log(to)
 next(); // 跳轉(zhuǎn)到A頁(yè)面
}

c組件所有代碼如下:

<template>
 <div class="list">
 <h1>{{msg}}</h1>
 <router-link to="/a">返回a頁(yè)面</router-link>
 </div>
</template>

<script>
export default {
 name: 'list',
 data () {
 return {
  msg: 'Welcome to B Page'
 };
 },
 created() {},
 methods: {
 },
 beforeRouteLeave(to, from, next) {
 // 設(shè)置下一個(gè)路由meta
 to.meta.keepAlive = false; // 讓A不緩存,重新請(qǐng)求數(shù)據(jù)
 console.log(to)
 next(); // 跳轉(zhuǎn)到A頁(yè)面
 }
};
</script>

a組件內(nèi)的所有的代碼如下:

<template>
 <div class="hello">
 <h1>vue</h1>
 <h2>{{msg}}</h2>
 <router-link to="/b">跳轉(zhuǎn)到b頁(yè)面</router-link>
 <router-link to="/c">跳轉(zhuǎn)到c頁(yè)面</router-link>
 </div>
</template>

<script>
export default {
 name: 'helloworld',
 data () {
 return {
  msg: 'Welcome to A Page'
 };
 },
 methods: {
 ajaxRequest() {
  const obj = {
  'aa': 1
  };
  Promise.all([this.$store.dispatch('testUrl', obj)]).then((res) => {});
 }
 },
 beforeRouteEnter(to, from, next) {
 next(vm => {
  /*
  如果 to.meta.savedPosition === undefined 說(shuō)明是刷新頁(yè)面或可以叫第一次進(jìn)入頁(yè)面 需要刷新數(shù)據(jù)
  如果to.meta.keepAlive === false, 那么說(shuō)明是需要請(qǐng)求的;
  此時(shí)需要刷新數(shù)據(jù),獲取新的列表內(nèi)容。
  否則的話 什么都不做,直接使用 keep-alive中的緩存
  */
  if (to.meta.savedPosition === undefined) {
  vm.ajaxRequest();
  }
  if (!to.meta.keepAlive) {
  vm.ajaxRequest();
  }
 })
 }
};
</script>

注意 b組件到a組件不重新請(qǐng)求數(shù)據(jù) (包括點(diǎn)擊鏈接和瀏覽器后退按鈕),c組件到a組件請(qǐng)求數(shù)據(jù)(包括點(diǎn)擊鏈接和瀏覽器后退按鈕).

查看github上的代碼

總結(jié)

以上所述是小編給大家介紹的vue2中的keep-alive使用總結(jié)及注意事項(xiàng),希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

相關(guān)文章

  • ElementUI時(shí)間選擇器限制選擇范圍disabledData的使用

    ElementUI時(shí)間選擇器限制選擇范圍disabledData的使用

    本文主要介紹了ElementUI時(shí)間選擇器限制選擇范圍disabledData的使用,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2022-06-06
  • 使用vue-draggable-plus實(shí)現(xiàn)拖拽排序

    使用vue-draggable-plus實(shí)現(xiàn)拖拽排序

    最近遇到一個(gè)需求,在 Vue3 的一個(gè) H5 頁(yè)面當(dāng)中點(diǎn)擊拖拽圖標(biāo)上下拖動(dòng) tab 子項(xiàng),然后點(diǎn)擊保存可以保存最新的 tab 項(xiàng)順序,同事說(shuō)可以用 vue-draggable-plus 這個(gè)庫(kù)來(lái)實(shí)現(xiàn)拖拽,所以本文給大家介紹了如何使用vue-draggable-plus實(shí)現(xiàn)拖拽排序,需要的朋友可以參考下
    2024-01-01
  • Vue中設(shè)置登錄驗(yàn)證攔截功能的思路詳解

    Vue中設(shè)置登錄驗(yàn)證攔截功能的思路詳解

    今天在做vue和springboot交互的一個(gè)項(xiàng)目的時(shí)候,想要基于前端實(shí)現(xiàn)一些只有登錄驗(yàn)證之后才能訪問(wèn)某些頁(yè)面的操作,所以在這里總結(jié)一下實(shí)現(xiàn)該功能的一個(gè)解決方案
    2021-10-10
  • Vue文件下載進(jìn)度條的實(shí)現(xiàn)過(guò)程

    Vue文件下載進(jìn)度條的實(shí)現(xiàn)過(guò)程

    這篇文章主要介紹了Vue文件下載進(jìn)度條的實(shí)現(xiàn)原理,通過(guò)使用onDownloadProgress方法API獲取進(jìn)度及文件大小等數(shù)據(jù),本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2022-07-07
  • vue element-ui里的table中表頭與表格出現(xiàn)錯(cuò)位的解決

    vue element-ui里的table中表頭與表格出現(xiàn)錯(cuò)位的解決

    這篇文章主要介紹了vue element-ui里的table中表頭與表格出現(xiàn)錯(cuò)位的解決方案,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-08-08
  • 在Vue中實(shí)現(xiàn)地圖熱點(diǎn)展示與交互的方法詳解(如熱力圖)

    在Vue中實(shí)現(xiàn)地圖熱點(diǎn)展示與交互的方法詳解(如熱力圖)

    隨著大數(shù)據(jù)和可視化技術(shù)的發(fā)展,地圖熱點(diǎn)展示越來(lái)越受到人們的關(guān)注,在Vue應(yīng)用中,我們通常需要實(shí)現(xiàn)地圖熱點(diǎn)的展示和交互,以便更好地呈現(xiàn)數(shù)據(jù)和分析結(jié)果,本文將介紹在Vue中如何進(jìn)行地圖熱點(diǎn)展示與交互,包括熱力圖、點(diǎn)聚合等
    2023-07-07
  • vue?模板循環(huán)繪制多行上傳文件功能實(shí)現(xiàn)

    vue?模板循環(huán)繪制多行上傳文件功能實(shí)現(xiàn)

    這篇文章主要為大家介紹了vue?模板循環(huán)繪制多行上傳文件功能實(shí)現(xiàn)詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-07-07
  • vue中引入mxGraph的步驟詳解

    vue中引入mxGraph的步驟詳解

    本文分步驟給大家介紹了vue中引入mxGraph的方法,非常不錯(cuò),給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2019-05-05
  • 在VUE中使用lodash的debounce和throttle操作

    在VUE中使用lodash的debounce和throttle操作

    這篇文章主要介紹了在VUE中使用lodash的debounce和throttle操作,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧
    2020-11-11
  • 一款移動(dòng)優(yōu)先的Solid.js路由solid router stack使用詳解

    一款移動(dòng)優(yōu)先的Solid.js路由solid router stack使用詳解

    這篇文章主要為大家介紹了一款移動(dòng)優(yōu)先的Solid.js路由solid router stack使用詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-08-08

最新評(píng)論