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

Vue?Vuex搭建vuex環(huán)境及vuex求和案例分享

 更新時間:2022年04月15日 11:29:49   作者:Errol_King  
這篇文章主要介紹了Vue?Vuex搭建vuex環(huán)境及vuex求和案例分享,?Vue?中實現(xiàn)集中式狀態(tài)管理的一個?Vue?插件,對?vue?應用中多個組件的共享狀態(tài)進行集中式的管理,下文相關(guān)介紹,需要的朋友可以參考一下

Vuex介紹

概念

在 Vue 中實現(xiàn)集中式狀態(tài)(數(shù)據(jù))管理的一個 Vue 插件,對 vue 應用中多個組件的共享狀態(tài)進行集中式的管理(讀寫),也是一種組件間通信的方式,且適用于任意組件間通信

何時使用

多個組件需要共享數(shù)據(jù)時

求和案例–純vue版

新建 Count.vue 組件,并在 App.vue 中注冊引用

<template>
? <div>
? ? <Count/>
? </div>
</template>

<script>
import Count from "@/components/Count";

export default {
? name: 'App',
? components: {Count},
}
</script>

<style>

</style>

我們主要關(guān)注 Count.vue

<template>
? <div class="category">
? ? <h1>當前求和為:{{ sum }}</h1>
? ? <select v-model="n">
? ? ? <!--這里的value前有冒號,否則value值是字符串-->
? ? ? <option :value="1">1</option>
? ? ? <option :value="2">2</option>
? ? ? <option :value="3">3</option>
? ? </select>

? ? <!--v-model.number收集到的數(shù)據(jù)強轉(zhuǎn)為number-->
<!-- ? ?<select v-model.number="n">
? ? ? <option value="1">1</option>
? ? ? <option value="2">2</option>
? ? ? <option value="3">3</option>
? ? </select>-->
? ? <button @click="increment">+</button>
? ? <button @click="decrement">-</button>
? ? <button @click="incrementOdd">當前和為奇數(shù)再加</button>
? ? <button @click="incrementWait">等一等再加</button>
? </div>
</template>

<script>
export default {
? name: "Count",
? data() {
? ? return {
? ? ? n: 1,//用戶選擇的數(shù)字
? ? ? sum: 0,//當前和
? ? }
? },
? methods: {
? ? increment() {
? ? ? this.sum += this.n
? ? },
? ? decrement() {
? ? ? this.sum -= this.n
? ? },
? ? incrementOdd() {
? ? ? if (this.sum % 2) {
? ? ? ? this.sum += this.n
? ? ? }
? ? },
? ? incrementWait() {
? ? ? setTimeout(() => {
? ? ? ? this.sum += this.n
? ? ? }, 500)
? ? }
? }
}
</script>

<style scoped>
select, button {
? margin-right: 5px;
}
</style>

搭建vuex環(huán)境

注意:

vue2 中要使用 vuex 的 3 版本
vue3 中要使用 vuex 的 4 版本

因為我們使用的是 vue2 所以我們需要安裝 vuex 的 3 版本

  • 1、執(zhí)行 npm i vuex@3 來安裝 vuex 3 版本
  • 2、src 下創(chuàng)建 store 文件夾,在其中創(chuàng)建一個 index.js

index.js

//該文件用于創(chuàng)建vuex中最為核心的store

//引入vuex
import Vuex from 'vuex'
//引入vue
import Vue from "vue";
//應用vuex插件
Vue.use(Vuex)

//準備actions;用于相應組件中的動作
const actions = {}
//準備mutations;用于操作數(shù)據(jù)(state)
const mutations = {}
//準備state;用于存儲數(shù)據(jù)
const state = {}

//創(chuàng)建并暴露store
export default new Vuex.Store({
? ? actions:actions,
? ? mutations,//key和value重名了,簡寫
? ? state,//key和value重名了,簡寫
});

3、main.js 中引入剛才寫好的 store

......
//引入store
//import store from './store/index'
import store from './store'

......

//創(chuàng)建vm
new Vue({
? ? el: "#app",
? ? //store:store
? ? store,//觸發(fā)簡寫形式
? ? ......
})

運行項目,我們可以打印 vm 和 vc,可以看到 $store

求和案例–vuex版

我們將求和的案例改為 vuex 版本

1、首先把數(shù)據(jù)交給 state

所以我們把 Count 組件中的數(shù)據(jù) sum 變量剪切走放到 index.js 中的 state 中,同時 Count 組件中的方法,例如加法 increment 中使用 this.$store.dispatch("方法名",變量) 來替代原來的方法。這樣就走完了流程圖中以下部分

Count.vue

<template>
? <div class="category">
? ? <h1>當前求和為:{{$store.state.sum}}</h1>
?? ?......
? </div>
</template>

<script>
export default {
? name: "Count",
? data() {
? ? return {
? ? ? n: 1,//用戶選擇的數(shù)字
? ? }
? },
? methods: {
? ? increment() {
? ? ? this.$store.dispatch("jia",this.n);
? ? }
? ? ......
? }
}
</script>

同時 index.js 中的 action 中添加對應的方法名,從圖上的流程圖來看,actions 中的東西會交到 mutations 中處理,所以需要手動調(diào)用 commit方法

mutation 中也需要增加同樣的方法名,這里可以都改成大寫,做個區(qū)分。方法中第一個參數(shù)就是 state,方法中處理真實邏輯即可

index.js

//該文件用于創(chuàng)建vuex中最為核心的store

//引入vuex
import Vuex from 'vuex'
//引入vue
import Vue from "vue";
//應用vuex插件
Vue.use(Vuex)

//準備actions;用于相應組件中的動作
const actions = {
? ? /*jia:function () {
? ? }*/
? ? //簡寫為:
? ? jia(context,value){
? ? ? ? console.log("actions中的jia被調(diào)用了",context,value);
? ? ? ? context.commit("JIA",value)
? ? }
}
//準備mutations;用于操作數(shù)據(jù)(state)
const mutations = {
? ? JIA(state,value){
? ? ? ? console.log("mutations中的JIA被調(diào)用了",state,value);
? ? ? ? state.sum += value;
? ? }
}

//準備state;用于存儲數(shù)據(jù)
const state = {
? ? sum: 0,//當前和
}

//創(chuàng)建并暴露store
export default new Vuex.Store({
? ? actions:actions,
? ? mutations,//key和value重名了,簡寫
? ? state,//key和value重名了,簡寫
});

log 輸出:

運行程序:

我們根據(jù)以上思路完善其他方法

Count.vue

<template>
? <div class="category">
? ? <h1>當前求和為:{{$store.state.sum}}</h1>
? ? <select v-model="n">
? ? ? <!--這里的value前有冒號,否則value值是字符串-->
? ? ? <option :value="1">1</option>
? ? ? <option :value="2">2</option>
? ? ? <option :value="3">3</option>
? ? </select>
? ? <button @click="increment">+</button>
? ? <button @click="decrement">-</button>
? ? <button @click="incrementOdd">當前和為奇數(shù)再加</button>
? ? <button @click="incrementWait">等一等再加</button>
? </div>
</template>

<script>
export default {
? name: "Count",
? data() {
? ? return {
? ? ? n: 1,//用戶選擇的數(shù)字
? ? }
? },
? methods: {
? ? increment() {
? ? ? this.$store.dispatch("jia",this.n);
? ? },
? ? decrement() {
? ? ? this.$store.commit("JIAN",this.n);
? ? },
? ? incrementOdd() {
? ? ? this.$store.dispatch("jiaOdd",this.n);
? ? },
? ? incrementWait() {
? ? ? this.$store.dispatch("jiaWait",this.n);
? ? }
? }
}
</script>

<style scoped>
select, button {
? margin-right: 5px;
}
</style>

index.js

//該文件用于創(chuàng)建vuex中最為核心的store

//引入vuex
import Vuex from 'vuex'
//引入vue
import Vue from "vue";
//應用vuex插件
Vue.use(Vuex)

//準備actions;用于相應組件中的動作
const actions = {
? ? /*jia:function () {
? ? }*/
? ? //簡寫為:
? ? jia(context,value){
? ? ? ? console.log("actions中的jia被調(diào)用了");
? ? ? ? context.commit("JIA",value)
? ? },
? ? jiaOdd(context,value){
? ? ? ? console.log("actions中的jianOdd被調(diào)用了");
? ? ? ? if(context.state.sum % 2){
? ? ? ? ? ? context.commit("JIA",value)
? ? ? ? }
? ? },
? ? jiaWait(context,value){
? ? ? ? console.log("actions中的jianWait被調(diào)用了");
? ? ? ? setTimeout(() => {
? ? ? ? ? ? context.commit("JIA",value)
? ? ? ? }, 500)
? ? }
}
//準備mutations;用于操作數(shù)據(jù)(state)
const mutations = {
? ? JIA(state,value){
? ? ? ? console.log("mutations中的JIA被調(diào)用了",state,value);
? ? ? ? state.sum += value;
? ? },
? ? JIAN(state,value){
? ? ? ? console.log("mutations中的JIAN被調(diào)用了",state,value);
? ? ? ? state.sum -= value;
? ? }
}

//準備state;用于存儲數(shù)據(jù)
const state = {
? ? sum: 0,//當前和
}

//創(chuàng)建并暴露store
export default new Vuex.Store({
? ? actions:actions,
? ? mutations,//key和value重名了,簡寫
? ? state,//key和value重名了,簡寫
});

到此為止,功能就實現(xiàn)了,你發(fā)現(xiàn)了嗎,這里做了些優(yōu)化,由于 index.js 中的 jia、jian方法里邊什么都沒做,直接就 commit 給了 mutation,而 vc 是可以直接對話 Mutations 的,如下圖:

所以我們把 index.js 中 actions 中的 jian方法去掉,在 Count 中直接調(diào)用 mutation 中的方法,也就是我們把 jian方法去掉,在 Count 的 decrement 方法中直接調(diào)用 commit 了

decrement() {
?? ?this.$store.commit("JIAN",this.n);
},

若沒有網(wǎng)絡請求或其他業(yè)務邏輯,組件中也可以越過 actions,即不寫 dispatch,直接編寫 commit

一些疑惑和問題

index.js 中的上下文有什么作用?我們可以打印下 context:

可以看到其中有dispatch、commit、state這些熟悉的身影。我們用 jiaOdd 舉例,當方法邏輯處理復雜時,可以繼續(xù) dispatch 其他方法來分擔。而有了 state 我們可以拿到其中的 sum 值:

?? ?jiaOdd(context,value){
? ? ? ? console.log("actions中的jianOdd被調(diào)用了",context);
? ? ? ? if(context.state.sum % 2){
? ? ? ? ? ? context.commit("JIA",value)
? ? ? ? }
? ? ? ? context.dispatch("demo",value)
? ? },
? ? demo() {
? ? ? ? //處理一些事情
? ? },

到此這篇關(guān)于Vue Vuex搭建vuex環(huán)境及vuex求和案例分享的文章就介紹到這了,更多相關(guān)Vue Vuex 搭建內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • Vue三種常用傳值示例(父傳子、子傳父、非父子)

    Vue三種常用傳值示例(父傳子、子傳父、非父子)

    這篇文章主要介紹了Vue傳值-三種常用傳值示例,主要介紹了父組件向子組件進行傳值,子組件向父組件傳值和非父子組件進行傳值,感興趣的小伙伴們可以參考一下
    2018-07-07
  • vue+tsc+noEmit導致打包報TS類型錯誤問題及解決方法

    vue+tsc+noEmit導致打包報TS類型錯誤問題及解決方法

    當我們新建vue3項目,package.json文件會自動給我添加一些配置選項,這寫選項基本沒有問題,但是在實際操作過程中,當項目越來越復雜就會出現(xiàn)問題,本文給大家分享vue+tsc+noEmit導致打包報TS類型錯誤問題及解決方法,感興趣的朋友一起看看吧
    2023-10-10
  • 前端面試之vue2和vue3的區(qū)別有哪些

    前端面試之vue2和vue3的區(qū)別有哪些

    這篇文章主要為大家介紹了前端面試之vue2和vue3的區(qū)別有哪些,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2023-05-05
  • vue使用動態(tài)添加路由(router.addRoutes)加載權(quán)限側(cè)邊欄的方式

    vue使用動態(tài)添加路由(router.addRoutes)加載權(quán)限側(cè)邊欄的方式

    這篇文章主要介紹了vue使用動態(tài)添加路由(router.addRoutes)加載權(quán)限側(cè)邊欄的方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2023-06-06
  • vue2.0在table中實現(xiàn)全選和反選的示例代碼

    vue2.0在table中實現(xiàn)全選和反選的示例代碼

    這篇文章主要介紹了vue2.0在table中實現(xiàn)全選和反選的示例代碼,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-11-11
  • vue中watch和computed的區(qū)別與使用方法

    vue中watch和computed的區(qū)別與使用方法

    這篇文章主要給大家介紹了關(guān)于vue中watch和computed的區(qū)別與使用方法的相關(guān)資料,文中通過實例代碼結(jié)束的非常詳細,對大家學習或者使用Vue具有一定的參考學習價值,需要的朋友們下面來一起學習學習吧
    2020-08-08
  • vant中的toast層級改變操作

    vant中的toast層級改變操作

    這篇文章主要介紹了vant中的toast層級改變操作,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-11-11
  • vue?element-ui如何在el-tabs組件最右側(cè)添加按鈕

    vue?element-ui如何在el-tabs組件最右側(cè)添加按鈕

    這篇文章主要介紹了vue?element-ui如何在el-tabs組件最右側(cè)添加按鈕問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2023-07-07
  • VSCode中書寫Vue無代碼提示該如何解決

    VSCode中書寫Vue無代碼提示該如何解決

    vscode開發(fā)vue非常好用,因為有很多的插件,可以補全語法,或者高亮便于檢查錯誤,但我最近發(fā)現(xiàn)我的vscode卻沒有了代碼提示,這篇文章主要給大家介紹了關(guān)于VSCode中書寫Vue無代碼提示該如何解決的相關(guān)資料,需要的朋友可以參考下
    2022-12-12
  • Vue 自適應高度表格的實現(xiàn)方法

    Vue 自適應高度表格的實現(xiàn)方法

    這篇文章主要介紹了Vue 自適應高度表格的實現(xiàn)方法,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2020-05-05

最新評論