九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
react 添加 react-redux 基本用法

安裝

yarn add react-redux

創(chuàng)建文件、文件夾

|- redux  |- actions.js  |- reducer.js  |- store.js

actions.js

export const change_user_info = "changeUserInfo"export function ChangeUserInfo( data ){  return {    type: change_user_info,    data: data  }}

reducer.js

import { change_user_info } from "./actions"let storeState = {  userInfo: null}export default function Store( state = storeState, actions ){    switch( actions.type ){        case change_user_info:            return { ...state, userInfo: actions.data  }        default:            return state    }}

store.js

import { createStore } from 'redux'import reducer from './reducer'const store = createStore(reducer)export default store

引入

import { Provider } from "react-redux"import store from "./redux/index"ReactDOM.render(     <Provider store={ store } >        <App/>    </Provider>,     document.getElementById('root'));

使用

// 在組件內(nèi) 引入import * as React from "react"import { connect } from "react-redux"import { changeUserInfo } from "@/redux/actions"class Hello extends React.Component{     // 使用方式  // this.props.userInfo  // this.props.changeUserInfo( data )  ...  // 省略}const mapStateToProps = ( state ) =>{    return {        userInfo: state.userInfo    }}const mapActionsToProps = ( dispatch )=>{    return {        changeUserInfo: ( data )=>{            dispatch( changeUserInfo( data ) )        }    }}export default connect( mapStateToProps, mapActionsToProps )( Hello )

作者:taoqun
地址:http://taoquns.com/paper/46

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
使用useSelector useDispatch 替代connect
react+taro-JYwebApp模板集成方案項(xiàng)目搭建【1】
深入實(shí)戰(zhàn):構(gòu)建現(xiàn)代化的Web前端應(yīng)用
漸進(jìn)式入門教程 | Taro 文檔
前端單頁(yè)應(yīng)用微服務(wù)化解決方案4 - 消息總線
Rematch的深入學(xué)習(xí)與實(shí)戰(zhàn)應(yīng)用(一),簡(jiǎn)易數(shù)字計(jì)數(shù)器
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服