我正在使用React和Typescript。我有一个充当包装器的react组件,我希望将其属性复制到其子级。我正在遵循React的使用克隆元素的指南:https
:
//facebook.github.io/react/blog/2015/03/03/react-v0.13-rc2.html#react.cloneelement。但是使用时,React.cloneElement
我从打字稿中得到以下错误:
Argument of type 'ReactChild' is not assignable to parameter of type 'ReactElement<any>'.at line 27 col 39
Type 'string' is not assignable to type 'ReactElement<any>'.
如何分配正确的类型给react.cloneElement?
这是一个复制上述错误的示例:
import * as React from 'react';
interface AnimationProperties {
width: number;
height: number;
}
/**
* the svg html element which serves as a wrapper for the entire animation
*/
export class Animation extends React.Component<AnimationProperties, undefined>{
/**
* render all children with properties from parent
*
* @return {React.ReactNode} react children
*/
renderChildren(): React.ReactNode {
return React.Children.map(this.props.children, (child) => {
return React.cloneElement(child, { // <-- line that is causing error
width: this.props.width,
height: this.props.height
});
});
}
/**
* render method for react component
*/
render() {
return React.createElement('svg', {
width: this.props.width,
height: this.props.height
}, this.renderChildren());
}
}
问题是它的定义ReactChild
是这样的:
type ReactText = string | number;
type ReactChild = ReactElement<any> | ReactText;
如果您确定child
始终是a,ReactElement
则进行强制转换:
return React.cloneElement(child as React.ReactElement<any>, {
width: this.props.width,
height: this.props.height
});
否则,请使用isValidElement类型的guard:
if (React.isValidElement(child)) {
return React.cloneElement(child, {
width: this.props.width,
height: this.props.height
});
}
(我以前没有使用过,但是根据定义文件,它在那里)
我最近一直在试验Typescript装饰程序,试图解决应用程序中的一个“问题”。我正在使用JS桥向Android和iOS提供TS代码,目前我们声明如下函数: index.js 上述操作将使函数在网桥的本机端可用 我想写一个decorator应用于方法,它将在但我的任务失败了。 这是起作用的装饰师: 我如何添加另一个方法到函数?
我有两个超类(和),和一个子类。Dog类有一个所有者setter函数(。我在分配和抽象类类型时遇到问题。 阐明想法的代码示例: 假设我需要像这样使用这3个类,并且两个类具有相同的功能。我该怎么做?
问题内容: 我想通过字符串对象分配类属性-但是如何? 例: 问题答案: 为此有一个内置函数: 参考:http : //docs.python.org/library/functions.html#setattr 例:
我有两个超类(和)和一个子类。类有一个所有者设置函数(),需要它接受任一超类作为其变量。我在分配和抽象类类型时遇到问题。 阐明想法的代码示例: 假设我需要像这样使用这3个类,并且这两个所有者类具有相同的函数。我该怎么做?
问题内容: 我有几个提供的接口 和一个实现第一个的类: 如果我不能更改任何接口,那么在保持实现尽可能通用的同时最好的做法是什么? 编辑 我无法中断实例化的其他一些代码, 因此我在实现中也应该有两种通用类型。 问题答案: 问题是显然不是。Java是强类型的,不会允许您执行此类操作。 您可以将其强制转换为,在这种情况下,您仍然会收到有关未经检查的转化的警告。这意味着此转换是 不安全的 。 或直接使用代
说我有以下课程 和 当我调用超级构造函数时,如何保证子构造函数调用“正确”的构造函数?更具体地说,我希望100%确保我传入的三个字符串值确实设置为父级中的正确字段,而不是设置为item1 in的字段。 我知道我可以,例如: 显式创建我自己的所有参数构造函数 在子构造函数中,调用父构造函数的所有setter 但是我只是好奇Lombok是否足够聪明,以某种方式,将子类中的字段设置为父类中正确的字段?