gpt4 book ai didi

reactjs - React原生组件中的高阶组件(HOC)和继承有什么区别

转载 作者:行者123 更新时间:2023-12-03 13:49:39 31 4
gpt4 key购买 nike

我是 .net 背景的新手,

这里的问题是 HOC 与 OOPS 概念中的继承有何不同,它具有具有基属性的父类和扩展 Base 并使用 Base 类中的状态、属性和基方法的子类。

React组件中实现Parent->Child->GrandChild层次关系的最佳方式是什么?

例如:

Parent.js 看起来像

class Parent extends Component
{
constructor(props)
{
super(props);
this.state = {
value: "Parent",
BaseText: "Inheritance Example"
}
}

onUpdate = () => {
console.log("Update called at Parent")
}
}

Child.js 扩展了 Parent.js

class Child extends Parent
{
constructor(props)
{
super(props);
//this state should inherit the properties of Parent and override only the value property
this.state = {
value: "Child",
}
}

onUpdate = () => {
super.onUpdate();
console.log("Update called at Child view")
}



render()
{
return(
<View>
<Text> Child View</Text>
</View>
)
}
}

GrandChild.js 扩展自 Child.js

class GrandChild extends Child
{
constructor(props)
{
super(props);
//this state should inherit the properties of Child, Parent and properties specific to this
this.state = {
value: "GrandChild",
Name: "Test Grand Child"
}
}

onUpdate = () => {
super.onUpdate();
console.log("Update called at Grand Child view")
}



render()
{
return(
<View>
<Text> Grand Child View</Text>
</View>
)
}
}

这是在 React Native 中实现抽象的正确方法吗假设父类将具有公共(public)状态属性,子类继承父类状态并拥有自己的属性。

在这种情况下如何继承状态以及如何将值更新为状态。?

最佳答案

React 推广 composition作为类继承的替代方案。组件被设计为能够有效地组合。 Hooks API使用以前需要使用类组件的功能来增强功能组件。

这并不意味着不允许继承。其问题在于 React 生态系统中广泛使用的现有模式(例如高阶组件)与 OOP 不兼容:

const withBaz = Comp => <Comp baz />

@withBaz
class Bar extends Foo { ... }

这种方法很常见,但它不适合 OOP,因为在这种情况下 Bar 实际上不再是一个类,而是箭头函数,它无法进一步继承。

只要开发人员控制类层次结构中的所有组件,对第一方 React 组件使用 OOP 就没有问题,但这可能不切实际,因为总是可能需要涉及非第三方代码面向对象友好。在合适的地方使用组合可以带来更灵活的设计。

关于reactjs - React原生组件中的高阶组件(HOC)和继承有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53221196/

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