初学 redux 实现todolist
发布时间:2020-12-15 09:30:20 所属栏目:百科 来源:网络整理
导读:一. 为什么使用redux 1. React 只是一个用于构建用户界面的js库2. 对于父子组件的调用, 只能通过图一左的那种方式一级一级的进行传值3. 使用redux,就可以构建一个store,把需要进行转发的数值存储到仓库里,各个组件就可以很方便的存
一. 为什么使用redux 1. React 只是一个用于构建用户界面的js库 2. 对于父子组件的调用, 只能通过图一左的那种方式一级一级的进行传值 3. 使用redux,就可以构建一个store,把需要进行转发的数值存储到仓库里,各个组件就可以很方便的存取。如图一右 图一 图二? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?图三 二. redux的传值方式理解。 react Components 可以理解为: 一个要在图书馆借书的学生
一共三个dom元素, Input Button List 四:代码 import React,{ Component } from ‘react‘; import { Button,Input,List } from ‘antd‘; import store from ‘./store/index‘; export default class TodoList extends Component{ constructor(props){ super(props); this.handleInputChange = this.handleInputChange.bind(this); this.handleBtnCLick = this.handleBtnCLick.bind(this); this.state = store.getState(); this.handleStoreChange = this.handleStoreChange.bind(this); store.subscribe(this.handleStoreChange); } render(){ return( <div style={{marginLeft:‘10px‘}}> <Input value={this.state.inputValue} style={{width:‘300px‘,marginTop:‘10px‘}} placeholder="Enter items" onChange={this.handleInputChange} /> <Button type="primary" onClick={this.handleBtnCLick} >提交</Button> <List style={{width:‘300px‘,marginTop:‘10px‘}} bordered dataSource={this.state.list} renderItem={(item,index) => <List.Item onClick={this.handleDeleteItem.bind(this,index)}>{item}</List.Item>} /> </div> ) } handleInputChange(e){ const action = { type: ‘input_change‘,value: e.target.value } store.dispatch(action); } handleBtnCLick(){ const action = { type: ‘add_item‘,} store.dispatch(action) } handleStoreChange(){ this.setState(store.getState()) } handleDeleteItem(index){ const action = { type: ‘delete_item‘,index: index } store.dispatch(action) } } store/index.js import { createStore } from ‘redux‘; import reducer from ‘./reducer‘; const store = createStore( reducer,window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__() ) export default store; store/reducer.js const defaultState = { inputValue: ‘‘,list:[] } export default (state = defaultState,action) => { if (action.type === ‘input_change‘){ let newState = JSON.parse(JSON.stringify(state)); newState.inputValue = action.value; return newState; } if (action.type === ‘add_item‘){ let newState = JSON.parse(JSON.stringify(state)); newState.list.push(newState.inputValue); newState.inputValue = ‘‘; return newState; } if (action.type === ‘delete_item‘){ let newState = JSON.parse(JSON.stringify(state)); newState.list.splice(action.index,1) return newState; } return state; } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |