传递函数给组件
如何将事件处理器(比如 onClick)传递给组件?
可以将事件处理器和其他函数作为 props 传递给子组件:
<button onClick={this.handleClick}>
如果需要在事件处理器中访问父组件,还需要为该函数绑定组件实例(参见下文)。
如何为函数绑定组件实例?
有以下几种方式可以确保函数可以访问组件属性,比如 this.props
和 this.state
,这取决于使用的语法和构建步骤。
在构造函数中绑定(ES2015)
class Foo extends Component {
constructor(props) {
super(props);
this.handleClick = this.handleClick.bind(this);
}
handleClick() {
console.log('Click happened');
}
render() {
return <button onClick={this.handleClick}>Click Me</button>;
}
}
Class Properties (ES2022)
class Foo extends Component {
handleClick = () => {
console.log('Click happened');
};
render() {
return <button onClick={this.handleClick}>Click Me</button>;
}
}
在 Render 中的绑定
class Foo extends Component {
handleClick() {
console.log('Click happened');
}
render() {
return <button onClick={this.handleClick.bind(this)}>Click Me</button>;
}
}
注意:
在 render 方法中使用
Function.prototype.bind
会在每次组件渲染时创建一个新的函数,可能会影响性能(参见下文)。
在 Render 中使用箭头函数
class Foo extends Component {
handleClick() {
console.log('Click happened');
}
render() {
return <button onClick={() => this.handleClick()}>Click Me</button>;
}
}
注意:
在 render 方法中使用箭头函数也会在每次组件渲染时创建一个新的函数,这会破坏基于恒等比较的性能优化。
可以在 render 方法中使用箭头函数吗?
一般来说是可以的,并且使用箭头函数是向回调函数传递参数的最简单的办法。
但是如果遇到了性能问题,一定要进行优化!
为什么绑定是必要的?
在JavaScript中,以下两种写法是不等价的:
obj.method();
var method = obj.method;
method();
bind 方法确保了第二种写法与第一种写法相同。
使用 React,通常只需要绑定传递给其他组件的方法。例如,<button onClick={this.handleClick}>
是在传递 this.handleClick
,所以需要绑定它。但是,没有必要绑定 render
方法或生命周期方法:我们并没有将它们传递给其他的组件。
Yehuda Katz 的文章详细解释了什么是绑定,以及函数在 JavaScript 中怎么起作用。
为什么我的函数每次组件渲染时都会被调用?
确保你在传递一个函数给组件时,没有调用这个函数:
render() {
// Wrong: handleClick is called instead of passed as a reference!
return <button onClick={this.handleClick()}>Click Me</button>
}
正确做法是,传递函数本身(不带括号):
render() {
// Correct: handleClick is passed as a reference!
return <button onClick={this.handleClick}>Click Me</button>
}
如何传递参数给事件处理器或回调?
可以使用箭头函数包裹事件处理器,并传递参数:
<button onClick={() => this.handleClick(id)} />
以上代码和调用 .bind
是等价的:
<button onClick={this.handleClick.bind(this, id)} />
示例:通过箭头函数传递参数
const A = 65 // ASCII character code
class Alphabet extends React.Component {
constructor(props) {
super(props);
this.state = {
justClicked: null,
letters: Array.from({length: 26}, (_, i) => String.fromCharCode(A + i))
};
}
handleClick(letter) {
this.setState({ justClicked: letter });
}
render() {
return (
<div>
Just clicked: {this.state.justClicked}
<ul>
{this.state.letters.map(letter =>
<li key={letter} onClick={() => this.handleClick(letter)}>
{letter}
</li>
)}
</ul>
</div>
)
}
}
示例:通过 data-attributes 传递参数
同样的,也可以使用 DOM API 来存储事件处理器需要的数据。如果需要优化大量元素或使用依赖于 React.PureComponent
相等性检查的渲染树,请考虑使用此方法。
const A = 65 // ASCII character code
class Alphabet extends React.Component {
constructor(props) {
super(props);
this.handleClick = this.handleClick.bind(this);
this.state = {
justClicked: null,
letters: Array.from({length: 26}, (_, i) => String.fromCharCode(A + i))
};
}
handleClick(e) {
this.setState({
justClicked: e.target.dataset.letter
});
}
render() {
return (
<div>
Just clicked: {this.state.justClicked}
<ul>
{this.state.letters.map(letter =>
<li key={letter} data-letter={letter} onClick={this.handleClick}>
{letter}
</li>
)}
</ul>
</div>
)
}
}
怎样阻止函数被调用太快或者太多次?
如果你有一个 onClick
或者 onScroll
这样的事件处理器,想要阻止回调被触发的太快,那么可以限制执行回调的速度,可以通过以下几种方式做到这点:
- 节流:基于时间的频率来进行抽样更改 (例如
_.throttle
) - 防抖:一段时间的不活动之后发布更改 (例如
_.debounce
) requestAnimationFrame
节流:基于 requestAnimationFrame 的抽样更改 (例如raf-schd
)
可以看这个比较 throttle 和 debounce 的可视化页面
注意:
_.debounce
、_.throttle
和raf-schd
都提供了一个cancel
方法来取消延迟回调。你需要在componentWillUnmount
中调用该方法,或者对代码进行检查来保证在延迟函数有效期间内组件始终挂载。
节流
节流阻止函数在给定时间窗口内被调不能超过一次。下面这个例子会节流 “click” 事件处理器,使其每秒钟的只能调用一次。
import throttle from 'lodash.throttle';
class LoadMoreButton extends React.Component {
constructor(props) {
super(props);
this.handleClick = this.handleClick.bind(this);
this.handleClickThrottled = throttle(this.handleClick, 1000);
}
componentWillUnmount() {
this.handleClickThrottled.cancel();
}
render() {
return <button onClick={this.handleClickThrottled}>Load More</button>;
}
handleClick() {
this.props.loadMore();
}
}
防抖
防抖确保函数不会在上一次被调用之后一定量的时间内被执行。当必须进行一些费时的计算来响应快速派发的事件时(比如鼠标滚动或键盘事件时),防抖是非常有用的。下面这个例子以 250ms 的延迟来改变文本输入。
import debounce from 'lodash.debounce';
class Searchbox extends React.Component {
constructor(props) {
super(props);
this.handleChange = this.handleChange.bind(this);
this.emitChangeDebounced = debounce(this.emitChange, 250);
}
componentWillUnmount() {
this.emitChangeDebounced.cancel();
}
render() {
return (
<input
type="text"
onChange={this.handleChange}
placeholder="Search..."
defaultValue={this.props.value}
/>
);
}
handleChange(e) {
this.emitChangeDebounced(e.target.value);
}
emitChange(value) {
this.props.onChange(value);
}
}
requestAnimationFrame
节流
requestAnimationFrame
是在浏览器中排队等待执行的一种方法,它可以在呈现性能的最佳时间执行。一个函数被 requestAnimationFrame
放入队列后将会在下一帧触发。浏览器会努力确保每秒 60 帧(60fps)。然而,如果浏览器无法确保,那么自然会限制每秒的帧数。例如,某个设备可能只能处理每秒 30 帧,所以每秒只能得到 30 帧。使用 requestAnimationFrame
来节流是一种有用的技术,它可以防止在一秒中进行 60 帧以上的更新。如果一秒钟内完成 100 次更新,则会为浏览器带来额外的负担,而用户却无法感知到这些工作。
注意:
使用这个方法时只能获取某一帧中最后发布的值。也可以在
MDN
中看优化的示例。
import rafSchedule from 'raf-schd';
class ScrollListener extends React.Component {
constructor(props) {
super(props);
this.handleScroll = this.handleScroll.bind(this);
// Create a new function to schedule updates.
this.scheduleUpdate = rafSchedule(
point => this.props.onScroll(point)
);
}
handleScroll(e) {
// When we receive a scroll event, schedule an update.
// If we receive many updates within a frame, we'll only publish the latest value.
this.scheduleUpdate({ x: e.clientX, y: e.clientY });
}
componentWillUnmount() {
// Cancel any pending updates since we're unmounting.
this.scheduleUpdate.cancel();
}
render() {
return (
<div
style={{ overflow: 'scroll' }}
onScroll={this.handleScroll}
>
<img src="/my-huge-image.jpg" />
</div>
);
}
}
测试速率限制
在测试速率限制的代码是否正确工作的时候,如果可以(对动画或操作)进行快进将会很有帮助。如果正在使用 jest
,那么可以使用 mock timers
来快进。如果正在使用 requestAnimationFrame
节流,那么就会发现 raf-stub
是一个控制动画帧的十分有用的工具。