随笔分类 -  react

摘要:useEffect 没有依赖项,那它会在每次render之后执行 模拟componentDidMount-useEffect依赖[] 模拟componentDidUpdate-useEffect无依赖,或者依赖[a, b] 模拟componentWillUnMount-useEffect中返回一个函 阅读全文
posted @ 2022-08-01 14:24 不知码 阅读(77) 评论(0) 推荐(0)
摘要:1 import React, {useEffect, useState} from 'react'; 2 import { connect } from 'dva'; 3 import styles from './IndexPage.css'; 4 5 let timer; 6 function 阅读全文
posted @ 2022-07-20 17:07 不知码 阅读(185) 评论(0) 推荐(0)