react
小小怪同学呀
这个作者很懒,什么都没留下…
展开
-
react生命周期钩子函数用法简单整理
react生命周期钩子函数: 一、挂载阶段: constructor() static getDerivedStateFromProps() * 会在调用 render 方法之前调用,并且在初始挂载及后续更新时都会被调用。它应返回一个对象来更新 state,如果返回 null 则不更新任何内容(static 静态方法/类方法 不能用this) * 父组件的props更改,所带来的重新渲染,...原创 2020-02-24 16:43:02 · 274 阅读 · 0 评论 -
react父组件调用子组件方法
react父组件调用子组件中的方法 //父组件 import React, { Component } from "react"; import Child from "子组件地址"; class Dad extends Component { constructor(props) { super(props); } render() { ...原创 2020-02-10 12:42:30 · 385 阅读 · 0 评论