我正在开发一个带有lit-HTML和haunted的 Web 组件库。我需要创建一个 HOC,因为我想在将道具传递给我的组件之前更新它们。我尝试了一些东西,效果很好。
const hoc = (WrappedComponent) => (props) => {
// here I update my props with a custom hooks
const newProps = useProps(props);
return WrappedComponent(newProps);
};
但是现在,“this”在我的组件中是未定义的。我尝试绑定“this”,但没有任何效果。“this”仍未定义
如果有人已经尝试创建高阶组件?你能分享我一些例子吗,请