P08:Redux基础-Redux制作ToDoList列表

目录
文章目录隐藏
  1. 编写按钮添加响应事件和 Action
  2. 创建 Action 并用 dispatch()传递给 store
  3. 编写 Reducer 的业务逻辑

通过上节课的知识,我们用同样的方法和流程,再开发一遍 toDoList 里边的列表功能,具体来说就是当点击添加按钮时,ToDoList 组件的列表会增加。知识其实我们都已经会了,缺少的是熟练度。

编写按钮添加响应事件和 Action

先来编写按钮点击后的响应事件,打开TodoList.js文件,然后在按钮的地方加入onClick事件,记得要进行绑定哦。

<Button 
    type="primary"
    onClick={this.clickBtn}
>增加</Button>

然后在constructor里进行绑定,代码如下:

constructor(props){
    super(props)
    this.state=store.getState();
    this.changeInputValue= this.changeInputValue.bind(this)
    this.storeChange = this.storeChange.bind(this)
    //关键代码------------start----------
    this.clickBtn = this.clickBtn.bind(this)
    //关键代码------------end----------
    store.subscribe(this.storeChange) //订阅 Redux 的状态
}

绑定之后就可以编写clickBtn()方法了,这里先用一个打印语句代替业务内容。

clickBtn(){
    console.log('mybj123.com')
}

这时候预览一下,点击”增加按钮”,在控制台就可以输出mybj123.com了。说明我们的事件添加成功了。

创建 Action 并用 dispatch()传递给 store

clickBtn方法里增加 Action,然后用dispatch()方法传递给 store,代码如下:

clickBtn(){
   const action = { type:'addItem'}
   store.dispatch(action)
}

这时候已经把 action 传递给了store,然后去Reducer里编写业务逻辑就可以了。

编写 Reducer 的业务逻辑

打开reducer.js文件,先编写代码判断type是不是addItem,如果向 redux 的 list 中插入新值。

export default (state = defaultState,action)=>{
    if(action.type === 'changeInput'){
        let newState = JSON.parse(JSON.stringify(state)) //深度拷贝 state
        newState.inputValue = action.value
        return newState
    }
    //关键代码------------------start----------
    //state 值只能传递,不能使用
    if(action.type === 'addItem' ){ //根据 type 值,编写业务逻辑
        let newState = JSON.parse(JSON.stringify(state)) 
        newState.list.push(newState.inputValue)  //push 新的内容到列表中去
        newState.inputValue = ''
        return newState
    }
     //关键代码------------------end----------
    return state
}

因为上节课已经编写了订阅方法,所以到这里就可以打开浏览器进行预览了。你可以试着添加一些新的东西进来。

P08:Redux 基础-Redux 制作 ToDoList 列表

这节课到这里就结束了,虽然没有什么新的知识点,但是这个Redux的流程你必须要熟练掌握,因为在工作中编写 Redux 程序,我几乎每天都在和这个流程打交道,实现界面的快速响应。

「点点赞赏,手留余香」

0

给作者打赏,鼓励TA抓紧创作!

微信微信 支付宝支付宝

还没有人赞赏,快来当第一个赞赏的人吧!

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
码云笔记 » P08:Redux基础-Redux制作ToDoList列表

发表回复