vuex 存值 及 取值 的操作

2022-07-01 17:27:14 字數 1384 閱讀 5122

1.傳值

// 定義引數

let params =

// 儲存引數

/** * 步驟一

* vuex 入口檔案

*/// 引入 vue

import vue from 'vue'

// 引入 vuex

import vuex from 'vuex'

import actions from './actions'

import mutations from './mutations'

vue.use(vuex);

// 匯出

export default new vuex.store(,

actions

});

(2)types.js

/**

* 步驟二

* 狀態(型別)

*/// 審批歷史頁請求引數

(3)actions.js

/** * 步驟三

* 管理事件(行為)

*/// 引入 狀態(型別),用於提交到mutations

import * as types from './types'

// 匯出

export default

}

(4)mutations.js

/**

* 步驟四

* 突變(處理狀態改變)

*/import from './types'

// 引入 getters

import getters from './getters'

// 定義、初始化資料

const state =

// 定義 mutations

const mutations =

}// 匯出

export default

(5)getters.js

/**

* 步驟五

* 獲取資料

*/// 匯出

export default

}

3.取值

import  from 'vuex';

export default ,

methods:

}}

注:dispatch:含有非同步操作,例如向後台提交資料,寫法: this.$store.dispatch('mutations方法名',值)

commit:同步操作,寫法:this.$store.commit('mutations方法名',值)

Vuex存值與取值

存值 methods 取值 methods store的index.js中 import vue from vue import vuex from vuex import handle from handle vue.use vuex export default newvuex.store 改變...

JS如何對Cookie進行存值,取值和清除操作

在做專案的過程中,我們經常會對cookie進行操作。例如我們常見的存值,取值,清除指定的cookie和清除全部的cookie以及給存放的cookie設定過期時間等等。所以,根據做專案中發現的這些問題在此做個總結。cookie中獲取網域名稱 cookie中獲取網域名稱 function getcook...

select 的操作取值和設定值

比如 1 設定value為pxx的項選中 selector val pxx 2 設定text為pxx的項選中 selector find option text pxx attr selected true 這裡有乙個中括號的用法,中括號裡的等號的前面是屬性名稱,不用加引號。很多時候,中括號的運用可...