- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将基于类的 Heading
组件转换为功能组件,但该组件使用 3 个生命周期 Hook componentDidMount
、componentWillUnmount
和 componentDidUpdate
。
我替换了componentDidMount
和componentWillUnmount
,但是如何替换componentDidUpdate
?它将更新的 prop
值与旧的 prop
值进行比较。
应用程序组件:
import React, { Component } from "react";
import { Heading } from "./components/Heading";
import { HeadingHook } from "./components/HeadingHook";
export class App extends Component {
state = {
flag: false,
mountUnmount: true
};
toggleChangeFlag = () => {
if (this.state.mountUnmount) {
this.setState({
flag: !this.state.flag
});
}
};
toggleMountUnmount = () => {
this.setState({
flag: false,
mountUnmount: !this.state.mountUnmount
});
};
render() {
return (
<>
<div>
<p>Controls :</p>
<button onClick={this.toggleChangeFlag}>Change Flag</button>
<button onClick={this.toggleMountUnmount}>Mount & Unmount</button>
</div>
{this.state.mountUnmount && <Heading flag={this.state.flag} />}
{/* Comment above line to use useEffect Heading Component */}
{/* {this.state.mountUnmount && <HeadingHook flag={this.state.flag} />} */}
</>
);
}
}
基于类的标题组件:
import React, {Component} from 'react';
export class Heading extends Component {
handleProps() {
if (this.props.flag) {
alert(this.props.flag);
} else {
alert(this.props.flag);
}
};
componentDidMount() {
this.handleProps();
}
componentWillUnmount() {
this.handleProps();
}
componentDidUpdate(prevProps) {
if (this.props.flag !== prevProps.flag) {
this.handleProps();
}
}
render() {
return <h1>Hello World!</h1>;
}
}
useEffect 标题组件:
import React, { useEffect } from "react";
export const HeadingHook = (props) => {
const handleProps = () => {
if (props.flag) {
alert(props.flag);
} else {
alert(props.flag);
}
};
useEffect(() => {
handleProps();
return () => {
handleProps();
};
});
return <h1>Hello World!</h1>;
};
最佳答案
您所需要做的就是将依赖项数组传递给 useEffect 以确保效果何时运行。在您当前的实现中, useEffect 不仅在初始渲染时调用,而且在每次渲染时调用。要仅在初始渲染时调用它,您需要传递一个空数组作为第二个参数。但是,如果您还希望效果在参数更改时运行,则可以在依赖项数组中传入该参数。
其次,函数式组件没有 this
关键字,它们接收的 props 是通过函数的参数来接收的。
const Heading = ({flag}) => {
useEffect(() => {
const handleProps = () => {
if (flag) {
alert(flag);
} else {
alert(flag);
}
};
handleProps();
return () => {
handleProps();
}
}, [flag]);
return <h1>Hello World!</h1>;
};
关于reactjs - useEffect 如何比较以前和更新的 Prop ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58347371/
我是 firebase 的新手,我正在尝试分页查询。我喜欢有一个“下一个”和“上一个”按钮。我的下一个按钮工作正常,我的问题是单击上一个 引用:https://firebase.google.com/
抱歉,标题这么蹩脚,但我只是不知道该放什么,希望你能理解。另外,我不知道以前是否有人问过类似的问题,因为我不知道合适的关键字 - 因此也无法用谷歌搜索。 基本上...在查看preg_match_all
我想在 TFS 中 check out 一个检入文件的先前版本。我可以轻松获得特定文件的变更集 ID 列表,但无法弄清楚如何 checkout 以前的版本。 我目前的代码: var workspace
我想使用 @FunctionalInterface来 self 代码中的 Java 8,但我希望能够将生成的类文件与 Java 6 一起使用。我认为我应该将源版本设为 1.8 , 目标版本为 1.6
自从 versions 被删除以来,我一直无法找到安装以前版本软件的方法。命令并点击 Homebrew。我在 2008 Mac Pro (3,1) 上运行 macOS 10.14.3 (Mojave)
当我开始当前的项目时,App Store 中已经有一个应用程序。此应用程序仅适用于 iPhone。 我的第一个任务是测试和构建一个也可以在 iPod Touch 上运行的版本。 大约 3 周前,App
我在 GitHub 上有一个曾经是 fork 的 repo,但现在不是了,因为我已经删除了原始项目的任何痕迹并开始了一个同名的新项目。 但是,GitHub 仍然表示该项目是 fork 的。有什么方法可
我是一名优秀的程序员,十分优秀!