gpt4 book ai didi

javascript - 重写 React Component 的原型(prototype)方法

转载 作者:行者123 更新时间:2023-11-30 07:33:17 25 4
gpt4 key购买 nike

假设我有以下 React 组件类:

class SayHello extends React.Component {
constructor(props) {
super(props);

this.handleOnClick = this.handleOnClick.bind(this);
}

render() {
return <div onClick={this.handleOnClick}>Click Me</div>;
}

handleOnClick() {
console.log("clicked");
}
}

我想做的是创建一个高阶组件,它知道 SayHello 中的 handleOnClickbefore 调用 SayHellohandleOnClick,我希望它执行我首先传入的一些代码(即我想运行在我的服务器中记录某些内容的代码)。

是否有用于执行此类操作的 React 模式?

编辑:

我想在这里提供更多背景信息。我希望我的高阶组件在调用哪些方法方面是动态的。例如,有时它可能是 handleOnClick,但有时它可能是 handleOnSomethingElse

最佳答案

A higher-order component是一个接受组件参数并返回新组件的函数。

此函数返回一个带有修饰的handleClick 方法的组件:

// A higher-order component that runs some code before
// the given component's `handleClick` method
function wrapHello(componentClass) {
return class wrapped extends componentClass {
beforeHandleClick() {
console.log("I run first!")
}

handleClick(...args) {
this.beforeHandleClick()
super.handleClick(...args)
}
}
}

This pattern很简洁,因为它根本不是 React 特有的;这只是一个pure function .这意味着它很容易测试和推理。

这是一个不使用 React 的测试工具:

function wrapHello(componentClass) {
return class wrapped extends componentClass {
beforeHandleClick() {
console.log("I run first!")
}

handleClick(...args) {
this.beforeHandleClick()
super.handleClick(...args)
}
}
}

class SayHello {
handleClick() {
console.log("handleClick")
}
}

const WrappedHello = wrapHello(SayHello)
new WrappedHello().handleClick()

关于javascript - 重写 React Component 的原型(prototype)方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43399498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com