react是由facebook公司推出的,主打的口號就是高性能。那麼咱們在使用的時候,若是能在作一下優化的,那麼react使用的性能會更高,用戶體驗也會更好。css
下面我就列出幾種優化的方案供你們參考一下react
16.0更新之後,setSate書寫的時候,能夠直接穿一個帶兩個參數的函數,使得咱們在從新修改state中值不用再定義變量來接收,直接和原來的值比較就能夠了es6
this.setState((prev) => ({ list: [...prev.list, prev.inputValue], inputValue: '' }))
props接收的值使用es6解構的方式來接收ajax
const { list,name } = this.props
定義的事件修改this指向的時候,不建議寫在jsx中,而是寫到 constructor裏面redux
constructor(props) { super(props) this.handleClick = this.handleClick.bind(this) } render() { const { item } = this.props return ( <div> <div onClick={this.handleClick}>{item}</div> </div> ) }
import React, { Fragment } from 'react'; import 'antd/dist/antd.css' import {Input,Button,List} from 'antd' const TodoListUI=(props)=>{ return ( <Fragment> <div className="form-box"> <Input placeholder="請輸入" value={props.inputValue} onChange={props.handleChange}style={{width:'300px'}}/> <Button type="primary" style={{marginLeft:'20px'}} onClick={props.handleSubmit}>提交</Button> </div> <div className="list"> <List size="small" bordered dataSource={props.list} renderItem={(item,index) => (<List.Item onClick={()=>{props.handleDelete(index)}}>{item}</List.Item>)} /> </div> </Fragment> ) } export default TodoListUI;