Vuex數(shù)據(jù)管理

vuex工作圖示.png
  • State對象:給Vue Component提供數(shù)據(jù)狀態(tài)锉罐,this.$store.state.name...mapState(['name']) + computed
  • gettings對象:對State里面的數(shù)據(jù)進(jìn)一步加工殖熟,this.$store.getters.name...mapGetters(['name']) + computed
  • Mutation對象:改變state狀態(tài)的方法集合钉汗,this.$store.commit('方法名',參數(shù))蒲障、...mapMutations(['name']) + methods
  • Actions對象:處理異步數(shù)據(jù),this.$store.dispatch('方法名',參數(shù))

1. 不使用Vuex實(shí)現(xiàn)Tab功能

關(guān)于Tab的實(shí)現(xiàn):理想狀態(tài)下萎战,"選擇層Tab + 展示層Current"咐容,就夠了舆逃。但是蚂维,由于沒有公共狀態(tài)存儲(chǔ)的地方戳粒,只能借助父組件App,進(jìn)行tabIndex屬性的傳遞通信虫啥,很麻煩蔚约。所以說,兄弟組件之間的通信還是Vuex比較適合

知識點(diǎn)1:動(dòng)態(tài)改變class類的方式Array
知識點(diǎn)2:父子組件的通信派發(fā)事件this.$emit涂籽、props

# 子組件Tab: 存放Tab組件樣式的地方
<template>
    <div>
        <a href="javascript:;" @click="clickTab(1)" :class="['router', { current: tabIndex == 1 }]">選項(xiàng)1</a>
        <a href="javascript:;" @click="clickTab(2)" :class="['router', { current: tabIndex == 2 }]">選項(xiàng)2</a>
        <a href="javascript:;" @click="clickTab(3)" :class="['router', { current: tabIndex == 3 }]">選項(xiàng)3</a>
        <a href="javascript:;" @click="clickTab(4)" :class="['router', { current: tabIndex == 4 }]">選項(xiàng)4</a>
    </div>
</template>

<script>
export default {
    name: "tab",
    props: {
        tabIndex: Number,
    },
    methods: {
        clickTab(index) {
            // 自定義派發(fā)事件苹祟,監(jiān)聽Tab的改變(子組件向父組件通信)
            this.$emit("clickTab", index);
        },
    },
};
</script>

<style scoped>
.router {
    text-decoration: none;
    color: #000;
    margin-right: 10px;
}
.current {
    color: aqua;
}
</style>
# 父組件:控制Tab邏輯的地方
<template>
    <div id="app">
        <Tab :tabIndex="tabIndex" @clickTab="changeTab"></Tab>
        <Current :tabIndex="tabIndex"></Current>
    </div>
</template>

<script>
import Tab from "@/components/tabs/index.vue";
import Current from "@/views/Current.vue";
export default {
    name: "App",
    data() {
        return {
            tabIndex: 1,
        };
    },
    components: {
        Tab,
        Current,
    },
    methods: {
        changeTab(index) {
            this.tabIndex = index;
        },
    },
   
};
</script>
# 子組件Current,展示Tab內(nèi)容的地方
<template>
    <div>頁面{{ tabIndex }}</div>
</template>

<script>
export default {
    name: "Current",
    props: {
        tabIndex: Number,
    },
};
</script>



2. 使用Vuex重寫Tab功能

將tabIndex屬性评雌,以及操作tabIndex屬性的方法树枫,統(tǒng)一存儲(chǔ)到Vuex當(dāng)中,然后景东,在"選擇層Tab + 展示層
Current"砂轻,就夠了,跟App.vue沒關(guān)系了斤吐。

知識點(diǎn):如何在Vue組件當(dāng)中調(diào)用Vuex里面的數(shù)據(jù)和方法搔涝?...mapState(['name'])...mapMutations(['name'])

# store.js和措,聲明數(shù)據(jù)庄呈、以及操作數(shù)據(jù)方法
import Vue from "vue";
import Vuex from "vuex";

Vue.use(Vuex);

export default new Vuex.Store({
    state: {
        tabIndex: 1,
        test: "選項(xiàng)4"
    },
    mutations: {
        setTabIndex(state, index) {
            state.tabIndex = index;
        }
    }
});
# 子組件Tab: 存放Tab組件樣式的地方,并調(diào)用邏輯方法
<template>
    <div>
        <a href="javascript:;" @click="setTabIndex(1)" :class="['router', { current: tabIndex == 1 }]">選項(xiàng)1</a>
        <a href="javascript:;" @click="setTabIndex(2)" :class="['router', { current: tabIndex == 2 }]">選項(xiàng)2</a>
        <a href="javascript:;" @click="setTabIndex(3)" :class="['router', { current: tabIndex == 3 }]">選項(xiàng)3</a>
        <a href="javascript:;" @click="setTabIndex(4)" :class="['router', { current: tabIndex == 4 }]">{{ test }}</a>
    </div>
</template>


<script>
import { mapState, mapMutations } from "vuex";
export default {
    name: "tab",
    computed: {
        // 輔助方法mapState派阱,拿到State對象里面的數(shù)據(jù)
        // ...mapState(["tabIndex", "test"]),
        tabIndex() {
            return this.$store.state.tabIndex;
        },
        test() {
            return this.$store.state.test;
        },
    },
    methods: {
        // 輔助方法mapMutations诬留,拿到Mutations對象里面的方法
        // ...mapMutations(["setTabIndex"]),
        setTabIndex(index) {
            this.$store.commit("setTabIndex", index);
        },
    },
};
</script>

<style scoped>
.router {
    text-decoration: none;
    color: #000;
    margin-right: 10px;
}
.current {
    color: aqua;
}
</style>
#父組件App.vue
<template>
    <div id="app">
        <Tab></Tab>
        <Current></Current>
    </div>
</template>

<script>
import Tab from "@/components/tabs/index.vue";
import Current from "@/views/Current.vue";
export default {
    name: "App",
    components: {
        Tab,
        Current,
    },
};
</script>
#子組件,展示內(nèi)容區(qū)
<template>
    <div>頁面{{ tabIndex }}</div>
</template>

<script>
import { mapState } from "vuex";
export default {
    name: "Current",
    computed: {
        ...mapState(["tabIndex"]),
    },
};
</script>

3.actions處理異步數(shù)據(jù)dispatch颁褂、 context.commit()

問題:如何將接口請求到的數(shù)據(jù)存儲(chǔ)到Vuex里面故响,并渲染到Vue組件當(dāng)中?
第一步:定義actions方法獲取異步數(shù)據(jù)
第二步:調(diào)用mutations方法將異步數(shù)據(jù)存到state里面
第三步:vue components拿著state里面的數(shù)據(jù)渲染

# 前提:Express API
# // http://localhost:3000/api/test?name=小明&age=18

module.exports = (app) => {
    var express = require("express");
    var router = express.Router();

    router.get("/test", (req, res) => {
        if ("小明" == req.query.name && 18 == req.query.age) {
            res.send("我是小明颁独,今年18");
        } else {
            res.send("hello world");
        }
    });

    // 掛載router對象
    app.use("/api", router);
};
# vuex定義異步請求彩届、數(shù)據(jù)存儲(chǔ)等方法 

import Vue from "vue";
import Vuex from "vuex";

import { axios } from "@/libs/https.js";
Vue.use(Vuex);

export default new Vuex.Store({
    state: {
        expressText: ""
    },
    mutations: {
        setExpressText(state, text) {
            state.expressText = text;
        }
    },
    actions: {
        // context上下文對象包含commit屬性、payload接受一個(gè)對象參數(shù)
        getData(context, payload) {
            axios.get(`/api/test?name=${payload.name}&age=${payload.age}`).then(res => {
                context.commit("setExpressText", res);
            });
        }
    }
});
#  actions function調(diào)用誓酒、以及數(shù)據(jù)渲染 
<template>
    <div id="app">
        {{ expressText }}
    </div>
</template>

<script>
import { mapState } from "vuex";
export default {
    name: "App",
    computed: {
        ...mapState(["expressText"]),
    },
    mounted() {
        this.$store.dispatch("getData", { name: "小明", age: 18 });
    },
};
</script>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末樟蠕,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子靠柑,更是在濱河造成了極大的恐慌寨辩,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件歼冰,死亡現(xiàn)場離奇詭異靡狞,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)隔嫡,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進(jìn)店門甸怕,熙熙樓的掌柜王于貴愁眉苦臉地迎上來甘穿,“玉大人,你說我怎么就攤上這事梢杭∥录妫” “怎么了?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵武契,是天一觀的道長募判。 經(jīng)常有香客問我,道長咒唆,這世上最難降的妖魔是什么届垫? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任,我火速辦了婚禮全释,結(jié)果婚禮上敦腔,老公的妹妹穿的比我還像新娘。我一直安慰自己恨溜,他們只是感情好符衔,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著糟袁,像睡著了一般判族。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上项戴,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天形帮,我揣著相機(jī)與錄音,去河邊找鬼周叮。 笑死辩撑,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的仿耽。 我是一名探鬼主播合冀,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼项贺!你這毒婦竟也來了君躺?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤开缎,失蹤者是張志新(化名)和其女友劉穎棕叫,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體奕删,經(jīng)...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡俺泣,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片伏钠。...
    茶點(diǎn)故事閱讀 38,809評論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡侮邀,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出贝润,到底是詐尸還是另有隱情,我是刑警寧澤铝宵,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布打掘,位于F島的核電站,受9級特大地震影響鹏秋,放射性物質(zhì)發(fā)生泄漏尊蚁。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一侣夷、第九天 我趴在偏房一處隱蔽的房頂上張望横朋。 院中可真熱鬧,春花似錦百拓、人聲如沸琴锭。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽决帖。三九已至,卻和暖如春蓖捶,著一層夾襖步出監(jiān)牢的瞬間地回,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工俊鱼, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留刻像,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓并闲,卻偏偏與公主長得像细睡,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子帝火,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,724評論 2 351