redux 学习三

怎么使用全局的数据和方法

首先rcr

方法要引入 并且注册在  mapDispatchToProps  中  使用的话是 this.props.方法名

数据的话要在  mapStateToProps 中取出来           使用的话是this.props.list

const mapStateToProps = (state: any) => ({
    list: state.userinfo.list
})
import React, { Component } from 'react'
import { connect } from 'react-redux'
import { changeflag } from "../action/flagaction"
export class About extends Component<any, any> {

    componentDidMount() {
        this.props.changeflag(false)
    }
    componentWillUnmount() {
        this.props.changeflag(true)
    }
    render() {
        return (
            <div>
                关于测试页面
            </div>
        )
    }
}

const mapStateToProps = (state: any) => ({

})

const mapDispatchToProps = {
    changeflag
}

export default connect(mapStateToProps, mapDispatchToProps)(About)

上一篇:242. 有效的字母异位词


下一篇:react-redux基本使用