React的状态提升
通常,多个组件需要反映相同的变化数据,这时我们建议将共享状态提升到最近的共同父组件中去
示例:
我们写一个关于热水沸腾的组件,当我们在输入框输入的温度大于100度时,文字会显示热水沸腾。这样有两个输入框分别是摄氏度和华氏度。我们要把他们两个的温度同步。
// 定义两个温度单位
const scaleNames = {
c: 'Celsius',//摄氏度
f: 'Fahrenheit'//华氏度
};
// 摄氏度的转换公式
function toCelsius(fahrenheit) {
return (fahrenheit - 32) * 5 / 9;
}
// 华氏度的转行公式
function toFahrenheit(celsius) {
return (celsius * 9 / 5) + 32;
}
// 两个度量单位之间进行转换,使之同步
function tryConvert(temperature, convert) {
const input = parseFloat(temperature);
if (Number.isNaN(input)) {
return '';
}
const output = convert(input);
const rounded = Math.round(output * 1000) / 1000;
return rounded.toString();
}
// 判断是否沸腾
function BoilingVerdict(props) {
if (props.celsius >= 100) {
return <p>The water would boil.</p>;
}
return <p>The water would not boil.</p>;
}
// 子组件,主要输入框,已经是否沸腾的判断,要求传入scale 、temperature、onTemperatureChange
class TemperatureInput extends React.Component {
constructor(props) {
super(props);
this.handleChange = this.handleChange.bind(this);
}
handleChange(e) {
this.props.onTemperatureChange(e.target.value);
}
render() {
const temperature = this.props.temperature;
const scale = this.props.scale;
return (
<fieldset>
<legend>Enter temperature in {scaleNames[scale]}:</legend>
<input value={temperature}
onChange={this.handleChange} />
</fieldset>
);
}
}
// 父组件,进行状态提升。同步两个组件的状态,
class Calculator extends React.Component {
constructor(props) {
super(props);
this.handleCelsiusChange = this.handleCelsiusChange.bind(this);
this.handleFahrenheitChange = this.handleFahrenheitChange.bind(this);
this.state = {temperature: '', scale: 'c'};
}
handleCelsiusChange(temperature) {
this.setState({scale: 'c', temperature});
}
handleFahrenheitChange(temperature) {
this.setState({scale: 'f', temperature});
}
render() {
const scale = this.state.scale;
const temperature = this.state.temperature;
// 把华氏度转为摄氏度
const celsius = scale === 'f' ? tryConvert(temperature, toCelsius) : temperature;
// 把摄氏度转为华氏度
const fahrenheit = scale === 'c' ? tryConvert(temperature, toFahrenheit) : temperature;
return (
<div>
<TemperatureInput
scale="c"
temperature={celsius}
onTemperatureChange={this.handleCelsiusChange} />
<TemperatureInput
scale="f"
temperature={fahrenheit}
onTemperatureChange={this.handleFahrenheitChange} />
<BoilingVerdict
celsius={parseFloat(celsius)} />
</div>
);
}
}
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<Calculator />);
让我们来重新梳理一下当你对输入框内容进行编辑时会发生些什么:
- React 会调用 DOM 中
<input>
的onChange
方法。在本实例中,它是TemperatureInput
组件的handleChange
方法。 TemperatureInput
组件中的handleChange
方法会调用this.props.onTemperatureChange()
,并传入新输入的值作为参数。其 props 诸如onTemperatureChange
之类,均由父组件Calculator
提供。- 起初渲染时,用于摄氏度输入的子组件
TemperatureInput
中的onTemperatureChange
方法与Calculator
组件中的handleCelsiusChange
方法相同,而,用于华氏度输入的子组件TemperatureInput
中的onTemperatureChange
方法与Calculator
组件中的handleFahrenheitChange
方法相同。因此,无论哪个输入框被编辑都会调用Calculator
组件中对应的方法。 - 在这些方法内部,
Calculator
组件通过使用新的输入值与当前输入框对应的温度计量单位来调用this.setState()
进而请求 React 重新渲染自己本身。 - React 调用
Calculator
组件的render
方法得到组件的 UI 呈现。温度转换在这时进行,两个输入框中的数值通过当前输入温度和其计量单位来重新计算获得。 - React 使用
Calculator
组件提供的新 props 分别调用两个TemperatureInput
子组件的render
方法来获取子组件的 UI 呈现。 - React 调用
BoilingVerdict
组件的render
方法,并将摄氏温度值以组件 props 方式传入。 - React DOM 根据输入值匹配水是否沸腾,并将结果更新至 DOM。我们刚刚编辑的输入框接收其当前值,另一个输入框内容更新为转换后的温度值。
得益于每次的更新都经历相同的步骤,两个输入框的内容才能始终保持同步。
小结
- 在 React 应用中,任何可变数据应当只有一个相对应的唯一数据源,并且应该遵循自上而下的数据流规则
- 如果某些数据可以由 props 或 state 推导得出,那么它就不应该存在于 state 中
组合
包含关系
通过 JSX 嵌套, 我们可以将任意组件作为子组件传递给它们
子组件
function FancyBorder(props) {
return (
<div className={'FancyBorder FancyBorder-' + props.color}>
{props.children}
</div>
);
}
父组件
function WelcomeDialog() {
return (
<FancyBorder color="blue">
<h1 className="Dialog-title">
Welcome
</h1>
<p className="Dialog-message">
Thank you for visiting our spacecraft!
</p>
</FancyBorder>
);
}
方法二:
子组件
function SplitPane(props) {
return (
<div className="SplitPane">
<div className="SplitPane-left">
{props.left} </div>
<div className="SplitPane-right">
{props.right} </div>
</div>
);
}
父组件
function App() {
return (
<SplitPane
left={
<Contacts /> }
right={
<Chat /> } />
);
}