likes
comments
collection
share

React 组件通信之props及生命周期 setState 更新数据的表现

作者站长头像
站长
· 阅读数 117

React 学习记录

今日目标

✔ 掌握特殊的 props.children 属性。

✔ 掌握如何对 props 进行校验和设置默认值。

✔ 掌握生命周期概念与对应的钩子函数。

✔ 了解 setState 更新数据的表现。

✔ 掌握 TODOLIST 案例的编写。

children 属性

props 中 children 属性的用法。

内容

  • 组件的子节点会被当做是 children 属性传递到子组件内部。
  • 在传递数据的时候 children 属性与普通的 prop 一样,值可以是任意类型例如数字、字符串、数组、JSX、函数等。

代码

function Hello(props) {
    return <div>该组件的子节点:{props.children}</div>
}
;<Hello children='我是子节点' />
// children 是一个特殊的 prop,上面的写法和下面等价,当内容比较多的时候,下面的写法更加直观
;<Hello>我是子节点</Hello>

props 校验

  • 为什么需要对 props 进行校验?
  • 如何对传递过来的 prop 进行校验?

为什么需要对 props 进行校验

对于组件来说,props 是外来的,无法保证组件使用者传入数据的格式正确,如果传入的数据格式不对,可能会导致组件内部报错,而组件的使用者不能很明确的知道错误的原因

演示 props 校验的意义

  • 校验前

React 组件通信之props及生命周期 setState 更新数据的表现

  • 校验后

React 组件通信之props及生命周期 setState 更新数据的表现

如何对 props 进行校验

  1. 安装并导入 prop-types 包。
  2. 使用 组件名.propTypes = {} 来给组件的 props 添加校验规则。
  3. 校验规则通过 PropTypes 对象来指定。

App.jsx

import React, { Component } from 'react'
import Test from './Test'

export default class App extends Component {
    render() {
        return (
            <div>
                <Test colors={'red'} />
            </div>
        )
    }
}

Test.jsx

import React, { Component } from 'react'
import PropTypes from 'prop-types'

class Test extends Component {
    render() {
        return (
            <ul>
                {this.props.colors.map((item) => (
                    <li key={item}>{item}</li>
                ))}
            </ul>
        )
    }
}

Test.propTypes = {
    colors: PropTypes.array,
}
export default Test

常见校验规则

内容

  1. 常见类型:number、string、bool、array、func、object。
  2. React 元素类型(JSX):element。
  3. 必填项:isRequired。
  4. 特定结构的对象:shape({})。
{
    // 常见类型
    fn1: PropTypes.func,
    // 必选
    fn2: PropTypes.func.isRequired,
    // 特定结构的对象
    obj: PropTypes.shape({
        color: PropTypes.string,
        fontSize: PropTypes.number
    })
}

props 默认值

  • 指定默认值的好处。
  • 给组件的 props 提供默认值的 2 种方式。

内容

通过 defaultProps 可以给组件的 props 设置默认值,在未传入 props 的时候生效。

import React, { Component } from 'react'
class Test extends Component {
    render() {
        return <div>{this.props.age}</div>
    }
}

Test.defaultProps = {
    age: 18,
}
export default Test

// 没有传入 pageSize 属性
;<Test />

更建议写法(利用 JS 自身的能力来完成)。

import React, { Component } from 'react'
class Test extends Component {
    render() {
        const { age = 18 } = this.props
        return <div>{age}</div>
    }
}

export default Test

小结

  • 好处:即便外部不传递也不至于程序报错;简化代码(有可能就是有一些数据是很常用的,这样的话指定默认值外界不需要每次都传递啦)。

类的静态属性

通过类的 static 语法简化 props 校验和默认值的写法。

内容

  • 实例成员:通过实例才能访问的成员(属性或者方法),叫做实例成员。
  • 静态成员:通过类或者构造函数本身才能访问的成员(一般是直接挂载到类上的或者通过 static 关键字定义的)。
class Person {
    // 实例成员(通过实例能访问的成员,挂载到实例自身上的)
    name = 'zs',
    // 静态(通过构造函数或类才能访问到的成员)
    static age = 18
    // 实例成员(通过实例能访问的成员,挂载到原型上的)
    sayHi() {
        console.log('哈哈')
    }
}

简写

import React, { Component } from 'react'
class Test extends Component {
    static defaultProps = {
        age: 18,
    }
    render() {
        return <div>{this.props.age}</div>
    }
}

export default Test

生命周期概述

  • 什么是生命周期和生命周期函数。
  • React 中组件的生命周期总共有几个大的阶段。

内容

  • 生命周期:一个事物从创建到最后消亡的整个过程,而组件的生命周期说的就是组件从被创建到挂载到页面中运行,再到组件卸载的过程。
  • 意义:学习组件的生命周期有助于理解组件的运行方式、完成更复杂的组件功能、分析组件中问题产生的原因等。
  • 生命周期钩子函数的作用:为开发人员在不同阶段操作组件提供了时机。
  • 只有类组件才有生命周期。

React 组件通信之props及生命周期 setState 更新数据的表现

React 生命周期

生命周期

React 组件通信之props及生命周期 setState 更新数据的表现

挂载阶段

目标

  • 挂载阶段的钩子函数有哪几个。
  • 掌握执行时机和作用分别是什么。

内容

挂载阶段常用的生命周期函数有 3 个,执行顺序是 constructor => render => componentDidMount。

钩子函数触发时机作用
constructor创建组件时,最先执行1. 初始化 state 2. 创建 Ref 等
render每次组件渲染都会触发渲染 UI(注意: 不能直接调用 setState()  )
componentDidMount组件挂载(完成 DOM 渲染)后1. 发送网络请求 2.DOM 操作

更新阶段

目标

  • 更新阶段的钩子函数有哪几个。
  • 掌握执行时机和作用分别是什么。

内容

  • 更新阶段常用的生命周期函数有 2 个,执行顺序是 render => componentDidUpdate。
  • 触发更新:setState()forceUpdate()New props(父组件进行了 render)。
钩子函数触发时机作用
render每次组件渲染都会触发渲染 UI(与挂载阶段是同一个 render)
componentDidUpdate组件更新(完成 DOM 渲染)后DOM 操作,可以获取到更新后的 DOM 内容,不要调用 setState

卸载阶段

目标

  • 组件卸载阶段的钩子函数是什么。
  • 在卸载阶段的钩子函数里面干什么。

内容

  • 触发时机:组件从页面中消失。
  • ReactDOM.unmountComponentAtNode(document.getElementById('root'))
钩子函数触发时机作用
componentWillUnmount组件卸载(从页面中消失)执行清理工作(比如:清理定时器等、解绑事件等)

setState 更新数据的表现

目标

setState 更新数据的表现,异步和同步的场景。

异步表现

官方文档

  • 一般情况下(常见的在生命周期或合成事件处理函数中),通过 setState() 方法来更新数据,表现是异步的。
  • 当执行到 setState 这一行的时候,React 出于性能考虑,并不会马上进行调用来修改 state,而是先把这个以及后续的更新对象放到一个更新队列里面进行合并的操作,期间不影响后续代码的执行。
  • 多次调用 setState(),只会触发一次重新渲染,所以无需担心多次进行 setState 会带来性能问题。
// 初始  
state = { count: 1 }  
  
// 更新  
this.setState({  
count: this.state.count + 1,  
})  
// 输出  
console.log(this.state.count) // 1  
// 通过 DOM 也是不能马上获取的

解释合并

this.setState({
    count: this.state.count + 1,
})
this.setState({
    count: this.state.count + 2,
})
this.setState({
    count: this.state.count + 1,
})

执行过程:先排队,再把排队中的数据进行合并,最后执行 1 次 setState。

同步表现

如果是在 setTimeout/setInterval 或者原生事件的回调中,表现出来是同步的。

App.js

import React, { Component } from 'react'

export default class App extends Component {
    state = {
        count: 1,
    }
    componentDidMount() {
        setTimeout(() => {
            this.setState({
                count: this.state.count + 1,
            })
            console.log(this.state.count) // 2
        })
    }
    render() {
        return <div>{this.state.count}</div>
    }
}

原生事件

import React, { Component, createRef } from 'react'

export default class App extends Component {
    state = {
        count: 1,
    }
    btnRef = createRef()
    componentDidMount() {
        this.btnRef.current.onclick = () => {
            this.setState({
                count: this.state.count + 1,
            })
            console.log(this.state.count) // 2
        }
    }
    render() {
        return (
            <div>
                <h2>{this.state.count}</h2>
                <button ref={this.btnRef}>click</button>
            </div>
        )
    }
}

另一种同步的表现写法,了解即可!

import React, { Component } from 'react'

export default class App extends Component {
    state = {
        count: 1,
    }
    async componentDidMount() {
        await this.setState({
            count: this.state.count + 1,
        })
        console.log(this.state.count) // 2
    }
    render() {
        return (
            <div>
                <h2>{this.state.count}</h2>
            </div>
        )
    }
}

注意细节

setState 的“异步”并不是说内部由异步代码实现,其实本身执行的过程和代码都是同步的,只是合成事件和钩子函数的调用顺序会在更新之前,导致在合成事件和钩子函数中不能立即拿到更新后的值,形成了所谓的“异步”。

setState 的批量更新优化也是建立在钩子函数、合成事件之上的,在 setTimeout/Promise 和原生事件中不会批量更新,在“异步”中如果对同一个值进行多次 setState,setState 的批量更新测量会对其进行覆盖,取最后一次的结果,如果同时 setState 多个不同的值,在更新时会对齐进行合并后批量更新。

需要注意的是:ReactV18 是 Automatic batching 全自动批处理,18 之前的版本是半自动批处理。

总结

  • setState 更新数据的表现一般是异步的,目的是什么?在哪些场景下更新数据的表现是同步的?
  • 问题/现象:不能立即拿到更新后的数据;多次进行 setState 会进行合并的操作。

setState 推荐语法

目标

  • 能够解决上面的两个问题/现象。
  • 能够掌握 setState 箭头函数的语法。

第一个问题

通过 setState 第二个参数可以立即拿到更新后的数据。

  • 场景:在状态更新后,依靠更新后的状态立即执行某个操作。
  • 语法:setState(updater[, callback])
this.setState({}, () => {
    console.log('这个回调函数会在状态更新后立即执行')
})

第二个问题

  • 推荐:使用 setState((preState) => {}) 语法。
  • 参数 preState: 上一个 setState 的结果。
// 初始  
state = { count: 1 }  
  
// 更新  
this.setState((preState) => {  
return {  
count: preState.count + 1,  
}  
})  
  
this.setState((preState) => {  
return {  
count: preState.count + 2,  
}  
})  
  
// 输出  
console.log(this.state.count) // 依然是 1

这种语法依旧是异步的,不同的是通过 preState 可以获取到最新的状态。

案例练习

需求

React 组件通信之props及生命周期 setState 更新数据的表现

步骤

  1. 搭建基本结构。
  2. 准备一个变量来控制 <input/> 框的显示隐藏。
  3. 给按钮绑定点击事件,在事件回调里面修改这个变量的状态。
  4. 在事件回调里面,获取 <input/> 框 DOM 对象并调用其聚焦的方法。

代码

import React, { Component, createRef } from 'react'

export default class App extends Component {
    state = {
        showInput: false,
    }
    inputRef = createRef()
    handleClick = () => {
        this.setState({
            showInput: !this.state.showInput,
        })
        this.inputRef.current.focus()
    }
    render() {
        return (
            <div>
                <h1>我是根组件</h1>
                {this.state.showInput ? <input ref={this.inputRef} type='text' placeholder='请输入你的回复' /> : <button onClick={this.handleClick}>回复</button>}
            </div>
        )
    }
}

小结

数据更新后,想依赖更新后的数据做一些操作,把处理逻辑写在哪里?

B 站评论列表

目标

对留言数据进行持久化。

步骤

  1. 每次数据更新完毕存储到本地。
  2. 组件挂载完成从本地获取数据,通过 setState 进行更新。

代码

export default class App extends Component {
    // 更新的时候存储到本地
    componentDidUpdate() {
        localStorage.setItem('list', JSON.stringify(this.state.list))
    }
    // 挂载完成从本地获取,并设置到 state 中
    componentDidMount() {
        const list = JSON.parse(localStorage.getItem('list')) || []
        this.setState({ list })
    }
    render() {
        const { tabs, active, list } = this.state
        return (
            <div className='App'>
                <div className='comment-container'>
                    <div className='comment-head'>
                        <span>1 评论</span>
                    </div>
                    {/* tabs */}
                    <Tabs tabs={tabs} active={active} changeTab={this.changeTab} />
                    {/* form */}
                    <Form addComment={this.addComment} />
                    {/* list */}
                    <List list={list} active={active} delComment={this.delComment} changeAttitude={this.changeAttitude} />
                </div>
            </div>
        )
    }
}

TODOLIST

案例目标

效果

React 组件通信之props及生命周期 setState 更新数据的表现

模拟接口

json-server

  1. 安装。
npm i -g json-server 
  1. 准备数据 data.json
{
    "todos": [
        {
            "id": 1,
            "name": "死豆",
            "done": false
        },
        {
            "name": "打死豆豆",
            "done": true,
            "id": 4
        }
    ]
}
  1. 启动服务。
json-server data.json --port 8888
  1. 使用
GET /todos  
GET /todos/1  
POST /todos  
PUT /todos/1  
PATCH /todos/1  
DELETE /todos/1

PUT 和 PATCH 的差异

PUT 是全量修改,修改了数据中的某一项也要把其他的数据带过去,不然其他的数据会被干掉,PATCH 是补丁,传递什么只会修改什么。

静态结构

地址

App.jsx

import React, { Component } from 'react'

export default class App extends Component {
    render() {
        return (
            <section className='todoapp'>
                <header className='header'>
                    <h1>todos</h1>
                    <input className='new-todo' placeholder='What needs to be done?' autoFocus />
                </header>
                <section className='main'>
                    <input id='toggle-all' className='toggle-all' type='checkbox' />
                    <label htmlFor='toggle-all'>Mark all as complete</label>
                    <ul className='todo-list'>
                        <li className='completed'>
                            <div className='view'>
                                <input className='toggle' type='checkbox' checked />
                                <label>Taste JavaScript</label>
                                <button className='destroy'></button>
                            </div>
                            <input className='edit' value='Create a TodoMVC template' />
                        </li>
                        <li>
                            <div className='view'>
                                <input className='toggle' type='checkbox' />
                                <label>Buy a unicorn</label>
                                <button className='destroy'></button>
                            </div>
                            <input className='edit' value='Rule the web' />
                        </li>
                    </ul>
                </section>
                <footer className='footer'>
                    <span className='todo-count'>
                        <strong>0</strong> item left
                    </span>
                    <ul className='filters'>
                        <li>
                            <a className='selected' href='#/'>
                                All
                            </a>
                        </li>
                        <li>
                            <a href='#/active'>Active</a>
                        </li>
                        <li>
                            <a href='#/completed'>Completed</a>
                        </li>
                    </ul>
                    <button className='clear-completed'>Clear completed</button>
                </footer>
            </section>
        )
    }
}

styles/base.css

hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px dashed #c5c5c5;
    border-bottom: 1px dashed #f7f7f7;
}

.learn a {
    font-weight: normal;
    text-decoration: none;
    color: #b83f45;
}

.learn a:hover {
    text-decoration: underline;
    color: #787e7e;
}

.learn h3,
.learn h4,
.learn h5 {
    margin: 10px 0;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
}

.learn h3 {
    font-size: 24px;
}

.learn h4 {
    font-size: 18px;
}

.learn h5 {
    margin-bottom: 0;
    font-size: 14px;
}

.learn ul {
    padding: 0;
    margin: 0 0 30px 25px;
}

.learn li {
    line-height: 20px;
}

.learn p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0;
}

#issue-count {
    display: none;
}

.quote {
    border: none;
    margin: 20px 0 60px 0;
}

.quote p {
    font-style: italic;
}

.quote p:before {
    content: '“';
    font-size: 50px;
    opacity: 0.15;
    position: absolute;
    top: -20px;
    left: 3px;
}

.quote p:after {
    content: '”';
    font-size: 50px;
    opacity: 0.15;
    position: absolute;
    bottom: -42px;
    right: 3px;
}

.quote footer {
    position: absolute;
    bottom: -40px;
    right: 0;
}

.quote footer img {
    border-radius: 3px;
}

.quote footer a {
    margin-left: 5px;
    vertical-align: middle;
}

.speech-bubble {
    position: relative;
    padding: 10px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 5px;
}

.speech-bubble:after {
    content: '';
    position: absolute;
    top: 100%;
    right: 30px;
    border: 13px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.04);
}

.learn-bar > .learn {
    position: absolute;
    width: 272px;
    top: 8px;
    left: -300px;
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.6);
    transition-property: left;
    transition-duration: 500ms;
}

@media (min-width: 899px) {
    .learn-bar {
        width: auto;
        padding-left: 300px;
    }

    .learn-bar > .learn {
        left: 8px;
    }
}

styles/index.css

html,
body {
    margin: 0;
    padding: 0;
}

button {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    font-size: 100%;
    vertical-align: baseline;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    -webkit-appearance: none;
    appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.4em;
    background: #f5f5f5;
    color: #111111;
    min-width: 230px;
    max-width: 550px;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
}

.hidden {
    display: none;
}

.todoapp {
    background: #fff;
    margin: 130px 0 40px 0;
    position: relative;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
}

.todoapp input::-webkit-input-placeholder {
    font-style: italic;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
}

.todoapp input::-moz-placeholder {
    font-style: italic;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
}

.todoapp input::input-placeholder {
    font-style: italic;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
}

.todoapp h1 {
    position: absolute;
    top: -140px;
    width: 100%;
    font-size: 80px;
    font-weight: 200;
    text-align: center;
    color: #b83f45;
    -webkit-text-rendering: optimizeLegibility;
    -moz-text-rendering: optimizeLegibility;
    text-rendering: optimizeLegibility;
}

.new-todo,
.edit {
    position: relative;
    margin: 0;
    width: 100%;
    font-size: 24px;
    font-family: inherit;
    font-weight: inherit;
    line-height: 1.4em;
    color: inherit;
    padding: 6px;
    border: 1px solid #999;
    box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.new-todo {
    padding: 16px 16px 16px 60px;
    height: 65px;
    border: none;
    background: rgba(0, 0, 0, 0.003);
    box-shadow: inset 0 -2px 1px rgba(0, 0, 0, 0.03);
}

.main {
    position: relative;
    z-index: 2;
    border-top: 1px solid #e6e6e6;
}

.toggle-all {
    width: 1px;
    height: 1px;
    border: none; /* Mobile Safari */
    opacity: 0;
    position: absolute;
    right: 100%;
    bottom: 100%;
}

.toggle-all + label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 65px;
    font-size: 0;
    position: absolute;
    top: -65px;
    left: -0;
}

.toggle-all + label:before {
    content: '❯';
    display: inline-block;
    font-size: 22px;
    color: #949494;
    padding: 10px 27px 10px 27px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.toggle-all:checked + label:before {
    color: #484848;
}

.todo-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.todo-list li {
    position: relative;
    font-size: 24px;
    border-bottom: 1px solid #ededed;
}

.todo-list li:last-child {
    border-bottom: none;
}

.todo-list li.editing {
    border-bottom: none;
    padding: 0;
}

.todo-list li.editing .edit {
    display: block;
    width: calc(100% - 43px);
    padding: 12px 16px;
    margin: 0 0 0 43px;
}

.todo-list li.editing .view {
    display: none;
}

.todo-list li .toggle {
    text-align: center;
    width: 40px;
    /* auto, since non-WebKit browsers doesn't support input styling */
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    border: none; /* Mobile Safari */
    -webkit-appearance: none;
    appearance: none;
}

.todo-list li .toggle {
    opacity: 0;
}

.todo-list li .toggle + label {
    /*
		Firefox requires `#` to be escaped - https://bugzilla.mozilla.org/show_bug.cgi?id=922433
		IE and Edge requires *everything* to be escaped to render, so we do that instead of just the `#` - https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7157459/
	*/
    background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%23949494%22%20stroke-width%3D%223%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: center left;
}

.todo-list li .toggle:checked + label {
    background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%2359A193%22%20stroke-width%3D%223%22%2F%3E%3Cpath%20fill%3D%22%233EA390%22%20d%3D%22M72%2025L42%2071%2027%2056l-4%204%2020%2020%2034-52z%22%2F%3E%3C%2Fsvg%3E');
}

.todo-list li label {
    word-break: break-all;
    padding: 15px 15px 15px 60px;
    display: block;
    line-height: 1.2;
    transition: color 0.4s;
    font-weight: 400;
    color: #484848;
}

.todo-list li.completed label {
    color: #949494;
    text-decoration: line-through;
}

.todo-list li .destroy {
    display: none;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 40px;
    height: 40px;
    margin: auto 0;
    font-size: 30px;
    color: #949494;
    transition: color 0.2s ease-out;
}

.todo-list li .destroy:hover,
.todo-list li .destroy:focus {
    color: #c18585;
}

.todo-list li .destroy:after {
    content: '×';
    display: block;
    height: 100%;
    line-height: 1.1;
}

.todo-list li:hover .destroy {
    display: block;
}

.todo-list li .edit {
    display: none;
}

.todo-list li.editing:last-child {
    margin-bottom: -1px;
}

.footer {
    padding: 10px 15px;
    height: 20px;
    text-align: center;
    font-size: 15px;
    border-top: 1px solid #e6e6e6;
}

.footer:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 50px;
    overflow: hidden;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 8px 0 -3px #f6f6f6, 0 9px 1px -3px rgba(0, 0, 0, 0.2), 0 16px 0 -6px #f6f6f6, 0 17px 2px -6px rgba(0, 0, 0, 0.2);
}

.todo-count {
    float: left;
    text-align: left;
}

.todo-count strong {
    font-weight: 300;
}

.filters {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    right: 0;
    left: 0;
}

.filters li {
    display: inline;
}

.filters li a {
    color: inherit;
    margin: 3px;
    padding: 3px 7px;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 3px;
}

.filters li a:hover {
    border-color: #db7676;
}

.filters li a.selected {
    border-color: #ce4646;
}

.clear-completed,
html .clear-completed:active {
    float: right;
    position: relative;
    line-height: 19px;
    text-decoration: none;
    cursor: pointer;
}

.clear-completed:hover {
    text-decoration: underline;
}

.info {
    margin: 65px auto 0;
    color: #4d4d4d;
    font-size: 11px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    text-align: center;
}

.info p {
    line-height: 1;
}

.info a {
    color: inherit;
    text-decoration: none;
    font-weight: 400;
}

.info a:hover {
    text-decoration: underline;
}

/*
	Hack to remove background from Mobile Safari.
	Can't use it globally since it destroys checkboxes in Firefox
*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .toggle-all,
    .todo-list li .toggle {
        background: none;
    }

    .todo-list li .toggle {
        height: 40px;
    }
}

@media (max-width: 430px) {
    .footer {
        height: 50px;
    }

    .filters {
        bottom: 10px;
    }
}

:focus,
.toggle:focus + label,
.toggle-all:focus + label {
    box-shadow: 0 0 2px 2px #cf7d7d;
    outline: 0;
}

组件拆分

App.jsx

import React, { Component } from 'react'
import TodoFooter from './components/TodoFooter'
import TodoHeader from './components/TodoHeader'
import TodoMain from './components/TodoMain'

export default class App extends Component {
    render() {
        return (
            <section className='todoapp'>
                {/* TodoHeader */}
                <TodoHeader />
                {/* TodoMain */}
                <TodoMain />
                {/* TodoFooter */}
                <TodoFooter />
            </section>
        )
    }
}

请求数据并渲染

步骤

  1. App.js 中请求数据并存储到 state 的 list 数组中。
  2. 把 list 数组传递到 <TodoMain/> 组件。
  3. 通过 propTypes 对传递过来的 list 数组进行校验。
  4. 循环渲染 list 数组。

App.jsx

import React, { Component } from 'react'
import TodoFooter from './components/TodoFooter'
import TodoHeader from './components/TodoHeader'
import TodoMain from './components/TodoMain'
import axios from 'axios'
export default class App extends Component {
    state = {
        list: [],
    }
    async componentDidMount() {
        const res = await axios.get('http://localhost:8888/todos')
        this.setState({
            list: res.data,
        })
    }
    render() {
        const { list } = this.state
        return (
            <section className='todoapp'>
                {/* TodoHeader */}
                <TodoHeader />
                {/* TodoMain */}
                <TodoMain list={list} />
                {/* TodoFooter */}
                <TodoFooter />
            </section>
        )
    }
}

components/TodoMain.jsx

import React, { Component } from 'react'
import PropTypes from 'prop-types'

export default class TodoMain extends Component {
    static propTypes = {
        list: PropTypes.array,
    }
    render() {
        const { list } = this.props
        return (
            <section className='main'>
                <input id='toggle-all' className='toggle-all' type='checkbox' />
                <label htmlFor='toggle-all'>Mark all as complete</label>
                <ul className='todo-list'>
                    {list.map((item) => (
                        <li key={item.id} className={item.done ? 'completed' : ''}>
                            <div className='view'>
                                <input className='toggle' type='checkbox' checked={item.done} />
                                <label>{item.name}</label>
                                <button className='destroy'></button>
                            </div>
                            <input className='edit' value='Create a TodoMVC template' />
                        </li>
                    ))}
                </ul>
            </section>
        )
    }
}

添加功能

步骤

  1. <TodoHeader/> 组件收集输入的数据。
  2. 给 input 框绑定键盘事件,如果敲了回车,并且输入的内容不为空,则调用添加接口把数据传递过去。
  3. 清空输入的内容。
  4. 调用父组件重新获取数据并渲染的方法。

App.jsx

import React, { Component } from 'react'
import TodoFooter from './components/TodoFooter'
import TodoHeader from './components/TodoHeader'
import TodoMain from './components/TodoMain'
import axios from 'axios'
export default class App extends Component {
    state = {
        list: [],
    }
    async componentDidMount() {
        this.getTodoList()
    }
    getTodoList = async () => {
        const res = await axios.get('http://localhost:8888/todos')
        this.setState({
            list: res.data,
        })
    }
    render() {
        const { list } = this.state
        return (
            <section className='todoapp'>
                {/* TodoHeader */}
                <TodoHeader getTodoList={this.getTodoList} />
                {/* TodoMain */}
                <TodoMain list={list} />
                {/* TodoFooter */}
                <TodoFooter />
            </section>
        )
    }
}

components/TodoHeader.jsx

import React, { Component } from 'react'
import axios from 'axios'

export default class TodoHeader extends Component {
    state = {
        todoName: '',
    }
    addTodo = async (e) => {
        if (e.keyCode === 13) {
            // 校验
            if (!this.state.todoName.trim()) return
            // 发送请求,添加
            await axios.post('http://localhost:8888/todos', {
                name: this.state.todoName,
                done: false,
            })
            this.setState({
                todoName: '',
            })
            this.props.getTodoList()
        }
    }
    render() {
        return (
            <header className='header'>
                <h1>todos</h1>
                <input
                    className='new-todo'
                    placeholder='What needs to be done?'
                    autoFocus
                    value={this.state.todoName}
                    onChange={(e) => this.setState({ todoName: e.target.value })}
                    onKeyUp={this.addTodo}
                />
            </header>
        )
    }
}

删除功能

  1. 给删除按钮绑定点击事件,并把当前项 ID 传过去。
  2. 根据接收到的 ID 调用删除接口。
  3. 调用父组件获取数据并渲染的方法。

步骤

App.jsx

import React, { Component } from 'react'
import TodoFooter from './components/TodoFooter'
import TodoHeader from './components/TodoHeader'
import TodoMain from './components/TodoMain'
import axios from 'axios'
export default class App extends Component {
    state = {
        list: [],
    }
    async componentDidMount() {
        this.getTodoList()
    }
    getTodoList = async () => {
        const res = await axios.get('http://localhost:8888/todos')
        this.setState({
            list: res.data,
        })
    }
    render() {
        const { list } = this.state
        return (
            <section className='todoapp'>
                {/* TodoHeader */}
                <TodoHeader getTodoList={this.getTodoList} />
                {/* TodoMain */}
                <TodoMain list={list} getTodoList={this.getTodoList} />
                {/* TodoFooter */}
                <TodoFooter />
            </section>
        )
    }
}

components/TodoMain.jsx

import React, { Component } from 'react'
import PropTypes from 'prop-types'
import axios from 'axios'

export default class TodoMain extends Component {
    static propTypes = {
        list: PropTypes.array,
    }
    delTodo = async (id) => {
        await axios.delete(`http://localhost:8888/todos/${id}`)
        this.props.getTodoList()
    }
    render() {
        const { list } = this.props
        return (
            <section className='main'>
                <input id='toggle-all' className='toggle-all' type='checkbox' />
                <label htmlFor='toggle-all'>Mark all as complete</label>
                <ul className='todo-list'>
                    {list.map((item) => (
                        <li key={item.id} className={item.done ? 'completed' : ''}>
                            <div className='view'>
                                <input className='toggle' type='checkbox' checked={item.done} />
                                <label>{item.name}</label>
                                <button className='destroy' onClick={() => this.delTodo(item.id)}></button>
                            </div>
                            <input className='edit' value='Create a TodoMVC template' />
                        </li>
                    ))}
                </ul>
            </section>
        )
    }
}

选中功能

  1. 给 checkbox 框绑定 onChange 事件,并传递过去当前项。
  2. 根据当前项的 id 和 done(记得取反)调用修改的接口。
  3. 调用父组件获取数据并渲染的方法。

components/TodoMain.jsx

import React, { Component } from 'react'
import PropTypes from 'prop-types'
import axios from 'axios'

export default class TodoMain extends Component {
    static propTypes = {
        list: PropTypes.array,
    }
    delTodo = async (id) => {
        await axios.delete(`http://localhost:8888/todos/${id}`)
        this.props.getTodoList()
    }

    changeDone = async ({ id, done }) => {
        await axios.patch(`http://localhost:8888/todos/${id}`, {
            done: !done,
        })
        this.props.getTodoList()
    }
    render() {
        const { list } = this.props
        return (
            <section className='main'>
                <input id='toggle-all' className='toggle-all' type='checkbox' />
                <label htmlFor='toggle-all'>Mark all as complete</label>
                <ul className='todo-list'>
                    {list.map((item) => (
                        <li key={item.id} className={item.done ? 'completed' : ''}>
                            <div className='view'>
                                <input className='toggle' type='checkbox' checked={item.done} onChange={() => this.changeDone(item)} />
                                <label>{item.name}</label>
                                <button className='destroy' onClick={() => this.delTodo(item.id)}></button>
                            </div>
                            {/* <input className='edit' value='Create a TodoMVC template' /> */}
                        </li>
                    ))}
                </ul>
            </section>
        )
    }
}

完整代码

App.jsx

import React, { Component } from 'react'
import TodoFooter from './components/TodoFooter'
import TodoHeader from './components/TodoHeader'
import TodoMain from './components/TodoMain'
import axios from 'axios'
export default class App extends Component {
    state = {
        list: [],
    }
    async componentDidMount() {
        this.getTodoList()
    }
    getTodoList = async () => {
        const res = await axios.get('http://localhost:8888/todos')
        this.setState({
            list: res.data,
        })
    }
    render() {
        const { list } = this.state
        return (
            <section className='todoapp'>
                {/* TodoHeader */}
                <TodoHeader getTodoList={this.getTodoList} />
                {/* TodoMain */}
                <TodoMain list={list} getTodoList={this.getTodoList} />
                {/* TodoFooter */}
                <TodoFooter />
            </section>
        )
    }
}

components/TodoHeader.jsx

import React, { Component } from 'react'
import axios from 'axios'

export default class TodoHeader extends Component {
    state = {
        todoName: '',
    }
    addTodo = async (e) => {
        if (e.keyCode === 13) {
            // 校验
            if (!this.state.todoName.trim()) return
            // 发送请求,添加
            await axios.post('http://localhost:8888/todos', {
                name: this.state.todoName,
                done: false,
            })
            this.setState({
                todoName: '',
            })
            this.props.getTodoList()
        }
    }
    render() {
        return (
            <header className='header'>
                <h1>todos</h1>
                <input
                    className='new-todo'
                    placeholder='What needs to be done?'
                    autoFocus
                    value={this.state.todoName}
                    onChange={(e) => this.setState({ todoName: e.target.value })}
                    onKeyUp={this.addTodo}
                />
            </header>
        )
    }
}

components/TodoMain.jsx

import React, { Component } from 'react'
import PropTypes from 'prop-types'
import axios from 'axios'

export default class TodoMain extends Component {
    static propTypes = {
        list: PropTypes.array,
    }
    delTodo = async (id) => {
        await axios.delete(`http://localhost:8888/todos/${id}`)
        this.props.getTodoList()
    }

    changeDone = async ({ id, done }) => {
        await axios.patch(`http://localhost:8888/todos/${id}`, {
            done: !done,
        })
        this.props.getTodoList()
    }
    render() {
        const { list } = this.props
        return (
            <section className='main'>
                <input id='toggle-all' className='toggle-all' type='checkbox' />
                <label htmlFor='toggle-all'>Mark all as complete</label>
                <ul className='todo-list'>
                    {list.map((item) => (
                        <li key={item.id} className={item.done ? 'completed' : ''}>
                            <div className='view'>
                                <input className='toggle' type='checkbox' checked={item.done} onChange={() => this.changeDone(item)} />
                                <label>{item.name}</label>
                                <button className='destroy' onClick={() => this.delTodo(item.id)}></button>
                            </div>
                            {/* <input className='edit' value='Create a TodoMVC template' /> */}
                        </li>
                    ))}
                </ul>
            </section>
        )
    }
}

components/TodoFooter.jsx

import React, { Component } from 'react'

export default class TodoFooter extends Component {
    render() {
        return (
            <footer className='footer'>
                <span className='todo-count'>
                    <strong>0</strong> item left
                </span>
                <ul className='filters'>
                    <li>
                        <a className='selected' href='#/'>
                            All
                        </a>
                    </li>
                    <li>
                        <a href='#/active'>Active</a>
                    </li>
                    <li>
                        <a href='#/completed'>Completed</a>
                    </li>
                </ul>
                <button className='clear-completed'>Clear completed</button>
            </footer>
        )
    }
}

React 组件通信之props及生命周期 setState 更新数据的表现

转载自:https://juejin.cn/post/7158869336222875656
评论
请登录