91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Vuex中使用actions屬性

發布時間:2021-05-25 18:15:03 來源:億速云 閱讀:296 作者:Leah 欄目:web開發

今天就跟大家聊聊有關如何在Vuex中使用actions屬性,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

1 Promise 方式

main.js:

const store = new Vuex.Store({
  state: {
    count: 0,
  },
  mutations: {
    increment(state, n = 1) {
      state.count += n;
    }
  },
  actions: {
    asyncInrement(context) {
      return new Promise(resolve => {
        setTimeout(() => {
          context.commit('increment');
          resolve();
        }, 1000)
      });
    }
  }
});

這里使用了 Promise ,在 1 s 后提交了 mutations 中定義的 increment 遞增函數。它是 ES6 語法,有三種狀態:

狀態說明
Pending進行中
Resolved已完成
Rejected失敗

 index.vue:

<template>

  <div>
    {{count}}
    <button @click="asyncIncrementByAction">+1</button>
  </div>
</template>

<script>
  export default {
    name: "index.vue",
    computed: {
      count() {
        return this.$store.state.count;
      }
    },
    methods: {
      asyncIncrementByAction() {
        this.$store.dispatch('asyncInrement').then(() => {
          console.log(this.$store.state.count);
        })
      }
    }
  }
</script>

2 Callback 方式

也可以使用普通回調來實現異步方案。

main.js

const store = new Vuex.Store({
...
  actions: {
   ...
    asyncInrement2(context, callback) {
      setTimeout(() => {
        context.commit('increment');
        callback();
      }, 1000);
    }
  }
});

index.vue:

<template>
  <div>
    ...
    {{count}}
    <button @click="asyncIncrementByAction2">+1(Callback)</button>
  </div>
</template>

<script>
  export default {
    ...
    methods: {
      ...
      asyncIncrementByAction2() {
        this.$store.dispatch('asyncInrement2',() => {
          console.log(this.$store.state.count);
        });
      }
    }
  }
</script>

3 效果

如何在Vuex中使用actions屬性

vuex action和mutations的區別

action的功能和mutation是類似的,都是去變更store里的state,不過action和mutation有兩點不同:

1、action主要處理的是異步的操作,mutation必須同步執行,而action就不受這樣的限制,也就是說action中我們既可以處理同步,也可以處理異步的操作

2、action改變狀態,最后是通過提交mutation

使用方式: 

安裝:

npm install vuex --save

引用:

store.js

方法一:

/**
 * 創建完文件后需要去到main.js中引入成全局
 */
import Vue from "vue";
import Vuex from "vuex";
//使用vuex
Vue.use(Vuex);
const state = {
 targetUser: {} //用戶詳細資料數據
};
 
const getters = {
 //獲取到用戶狀態,//實時監聽state值的變化(最新狀態)
 targetUser: state => state.targetUser
};
 
const mutations = {
 //自定義改變state初始值的方法
 SET_TARGET_USER(state, targetUser) {
  if (targetUser) {
   state.targetUser = targetUser; //如果targetUser有內容就賦給狀態信息
  } else {
   //如果沒內容就給targetUser賦空對象
   state.targetUser = {};
  }
 }
};
 
const actions = {
 //這里面的方法是用來異步觸發mutations里面的方法,context與store 實例具有相同方法和屬性
 // 頁面定義的setGargetUser,targetUser為頁面傳過來的值
 setGargetUser({ commit }, targetUser) {
  commit("SET_TARGET_USER", targetUser);
 }
};

存儲頁面:

this.$store.dispatch('setGargetUser',friend)

獲取頁面:

 computed:{
    // 提示vuex中存入的用戶詳細資料
    targetUser(){
      return this.$store.getters.targetUser
    }
   },

以上方法有一個問題就是如果多人開發;會出現不利于管理,下面用一個方法定義一個常量

存儲:

this.$store.dispatch('setUser',decode)

store.js

/**
 * 創建完文件后需要去到main.js中引入成全局
 */
import Vue from "vue";
import Vuex from "vuex";
// 持久存儲插件
import createPersistedState from "vuex-persistedstate";
 
//使用vuex
Vue.use(Vuex);
 
/**
 * 在需要多人協作的項目中,我們可以使用常量代替mutation 事件類型。這在各種 Flux 實現中是很常見的模式。同時把這些常量放在單獨的文件中可以讓協作開發變得清晰。
 * 定義存儲信息
 *
 *  */
 
const types = {
 SET_TARGET_USER: "SET_TARGET_USER" //詳細資料
};
 
const state = {
 //用戶初始化的狀態
 targetUser: {} //用戶詳細資料數據
};
const getters = {
 //獲取到用戶狀態,//實時監聽state值的變化(最新狀態)
 targetUser: state => state.targetUser
};
const mutations = {
 //自定義改變state初始值的方法
 
 [types.SET_TARGET_USER](state, targetUser) {
  if (targetUser) {
   state.targetUser = targetUser; //如果targetUser有內容就賦給狀態信息
  } else {
   //如果沒內容就給targetUser賦空對象
   state.targetUser = {};
  }
 }
};
 
const actions = {
 //這里面的方法是用來異步觸發mutations里面的方法,context與store 實例具有相同方法和屬性
 setGargetUser({ commit }, targetUser) {
  commit(types.SET_TARGET_USER, targetUser);
  // localStorage.setItem("SET_TARGET_USER", JSON.stringify(targetUser));
 }
};
export default new Vuex.Store({
 state,
 mutations,
 getters,
 actions,
});

取值:

this.$store.getters.targetUser

看完上述內容,你們對如何在Vuex中使用actions屬性有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

定陶县| 太保市| 彰化市| 合山市| 西昌市| 信丰县| 潼关县| 建平县| 鄂伦春自治旗| 加查县| 廊坊市| 饶平县| 福贡县| 达拉特旗| 商水县| 平果县| 云安县| 盘锦市| 襄汾县| 新平| 科技| 长武县| 开阳县| 景德镇市| 通山县| 定陶县| 佳木斯市| 奉化市| 皮山县| 平果县| 长治县| 亚东县| 图们市| 休宁县| 通江县| 睢宁县| 石阡县| 台中县| 兰溪市| 新蔡县| 托里县|