中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

在React中如何使用Vuex

這篇文章給大家分享的是有關(guān)在React中如何使用Vuex的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

創(chuàng)新互聯(lián)公司是專業(yè)的云城網(wǎng)站建設(shè)公司,云城接單;提供網(wǎng)站制作、成都做網(wǎng)站,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行云城網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!

如何使用

一:創(chuàng)建Store實(shí)例:

與vuex一樣,使用單一狀態(tài)樹(一個對象)包含全部的應(yīng)用層級狀態(tài)(store)。

store可配置state,mutations,actions和modules屬性:

  1. state :存放數(shù)據(jù)

  2. mutations :更改state的唯一方法是提交 mutation

  3. actions :Action 提交的是 mutation,而不是直接變更狀態(tài)。Action 可以包含任意異步操作,觸發(fā)mutation,觸發(fā)其他actions。

支持中間件:中間件會在每次mutation觸發(fā)前后執(zhí)行。

store.js:

import {createStore} from 'ruex'
const state = {
 total_num:1111,
}
const mutations = {
 add(state,payload){
 state.total_num += payload
 },
 double(state,payload){
 state.total_num = state.total_num*payload
 },
}
const actions = {
 addAsync({state,commit,rootState,dispatch},payload){
 setTimeout(()=>{
 commit('add',payload)
 },1000)
 },
 addPromise({state,commit,rootState,dispatch},payload){
 return fetch('https://api.github.com/search/users?q=haha').then(res=>res.json())
 .then(res=>{
 commit('add',1)
 dispatch('addAsync',1)
 })
 },
 doubleAsync({state,commit,rootState,dispatch},payload){
 setTimeout(()=>{
 commit('double',2)
 },1000)
 },
 doublePromise({state,commit,rootState,dispatch},payload){
 return fetch('https://api.github.com/search/users?q=haha').then(res=>res.json())
 .then(res=>{
 commit('double',2)
 dispatch('doubleAsync',2)
 })
 },
}
// middleware
const logger = (store) => (next) => (mutation,payload) =>{
 console.group('before emit mutation ',store.getState())
 let result = next(mutation,payload)
 console.log('after emit mutation', store.getState())
 console.groupEnd()
}
// create store instance
const store = createStore({
 state,
 mutations,
 actions,
},[logger])
export default store

將Store實(shí)例綁定到組件上

ruex提供Provider方便store實(shí)例注冊到全局context上。類似react-redux的方式。

App.js:

import React from 'react'
import {Provider} from 'ruex'
import store from './store.js'
class App extends React.Component{
 render(){
 return (
  <Provider store={store} >
  <Child1/>
  </Provider>
 )
 }
}

使用或修改store上數(shù)據(jù)

store綁定完成后,在組件中就可以使用state上的數(shù)據(jù),并且可以通過觸發(fā)mutation或action修改state。具體的方式參考react-redux的綁定方式:使用connect高階組件。

Child1.js:

import React, {PureComponent} from 'react'
import {connect} from 'ruex'
class Chlid1 extends PureComponent {
 state = {}
 constructor(props) {
 super(props);
 }

 render() {
 const {
 total_num,
 } = this.props
 return (
 <div className=''>
 <div className="">
 total_num: {total_num}
 </div>

 <button onClick={this.props.add.bind(this,1)}>mutation:add</button>
 <button onClick={this.props.addAsync.bind(this,1)}>action:addAsync</button>
 <button onClick={this.props.addPromise.bind(this,1)}>action:addPromise</button>
 <br />
 <button onClick={this.props.double.bind(this,2)}>mutation:double</button>
 <button onClick={this.props.doubleAsync.bind(this,2)}>action:doubleAsync</button>
 <button onClick={this.props.doublePromise.bind(this,2)}>action:doublePromise</button>
 </div>)
 }
}


const mapStateToProps = (state) => ({
 total_num:state.total_num,
})
const mapMutationsToProps = ['add','double']
const mapActionsToProps = ['addAsync','addPromise','doubleAsync','doublePromise']

export default connect(
 mapStateToProps,
 mapMutationsToProps,
 mapActionsToProps,
)(Chlid1)

API:

  1. mapStateToProps :將state上的數(shù)據(jù)綁定到當(dāng)前組件的props上。

  2. mapMutationsToProps : 將mutation綁定到props上。例如:調(diào)用時通過this.props.add(data)的方式即可觸發(fā)mutation,data參數(shù)會被mutaion的payload參數(shù)接收。

  3. mapActionsToProps : 將action綁定到props上。

內(nèi)部實(shí)現(xiàn)

ruex內(nèi)部使用immer維護(hù)store狀態(tài)更新,因此在mutation中,可以通過直接修改對象的屬性更改狀態(tài),而不需要返回一個新的對象。例如:

const state = {
 obj:{
 name:'aaaa'
 }
}
const mutations = {
 changeName(state,payload){
 state.obj.name = 'bbbb'
 // instead of 
 // state.obj = {name:'bbbb'}
 },
}

支持modules(暫不支持namespace)

支持中間件。注:actions已實(shí)現(xiàn)類似redux-thunk的功能

感謝各位的閱讀!關(guān)于“在React中如何使用Vuex”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

新聞標(biāo)題:在React中如何使用Vuex
鏈接分享:http://www.rwnh.cn/article40/jsciho.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供用戶體驗(yàn)、移動網(wǎng)站建設(shè)、手機(jī)網(wǎng)站建設(shè)網(wǎng)站排名、網(wǎng)站導(dǎo)航、商城網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)
泗阳县| 专栏| 海丰县| 炉霍县| 临高县| 乐山市| 神池县| 天等县| 革吉县| 清远市| 台南市| 都兰县| 伊川县| 右玉县| 莱西市| 浠水县| 永德县| 嘉定区| 孟津县| 民和| 尚志市| 新平| 贡觉县| 固阳县| 桐庐县| 海伦市| 宁海县| 伊金霍洛旗| 新余市| 麻栗坡县| 正蓝旗| 乐陵市| 南澳县| 东源县| 浦江县| 广州市| 洞口县| 和平区| 乐业县| 禄丰县| 扶绥县|