react-redux的使用

25 篇文章 0 订阅
5 篇文章 0 订阅

1、安装

npm install --save react-redux

2、引入

import store from './store/store'
import {Provider} from 'react-redux'
const App=(
	<Provider store={store}>    //Provider和store联结,Provider里面的所有组件都有获取store的能力
    	<TodoList />
	</Provider>
)

ReactDOM.render(App, document.getElementById('root'));

3、组件中

import {connect} from 'react-redux'
//定义mapStateToProps
const mapStateToProps= (state) => {//固定接收state参数,把store里面的数据转化为组件里面的props
    return{
        inputValue: state.inputValue
    }
}
const mapDispatchToProps= (dispatch) => {//将store的dispatch方法挂在到props上
return{
    handleChange(e){
        console.log(e.target.value)
        const action={
            type:'changeInpuValue',
            value:e.target.value
        }
        dispatch(action)
    },
    handleClick(){

    }

  }
}
// export default TodoList
export default connect(mapStateToProps,mapDispatchToProps)(TodoList)

在jsx中用的时候,是this.props.inputValue、this.props.handleChange。因为store里面的数据转化成了组件里的props数据,也将store的dispatch方法挂在到props上

注意:const { inputValue,list,handleChange} = this.props
这样可简化代码,下面的jsx中用的时候直接inputValue,不用this.props.inputValue

方法中有多个参数的时候移动版要用剪头函数,例如

 <li onClick={() => {delItems(index)}} key={index}>{item}</li>
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值