Specify specific props and accept general HTML props in Typescript React App(在TypeScrip Reaction应用程序中指定特定道具并接受常规的HTML道具)
问题描述
我有一个Reaction包装器组件,它接受一些道具,但将所有其他道具转发给子组件(特别是与本机道具相关的,如类名称、id等)。 然而,当我经过本地道具时,
TypeScrip抱怨道。请参阅错误消息:
TS2339:类型上不存在属性""ClassName"" ‘IntrinsicAttributes&;IntrinsicClassAttributes<;包装器>&;只读<;{ 子节点?:ReactNode;}>&;Readonly<;WrapperProps>‘。
如何获得具有特定道具的组件,该组件也接受本机道具(而不接受任何道具并放弃类型检查)?
我的代码如下:
interface WrapperProps extends JSX.IntrinsicAttributes {
callback?: Function
}
export class Wrapper extends React.Component<WrapperProps>{
render() {
const { callback, children, ...rest } = this.props;
return <div {...rest}>
{children}
</div>;
}
}
export const Test = () => {
return <Wrapper className="test">Hi there</Wrapper>
}
仅供参考:我在这里找到了一个类似的问题,但答案基本上放弃了类型检查,这是我想避免的:Link to SO-Question
推荐答案
我们可以看看div
道具是如何定义的:
interface IntrinsicElements {
div: React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
}
如果我们使用React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>
作为基类型,我们将拥有div
的所有属性。由于DetailedHTMLProps
只是将ref
添加到React.HTMLAttributes<HTMLDivElement>
,因此我们可以将此作为基接口来获取所有div
属性:
interface WrapperProps extends React.HTMLAttributes<HTMLDivElement> {
callback?: Function
}
export class Wrapper extends React.Component<WrapperProps>{
render() {
const { callback, children, ...rest } = this.props;
return <div {...rest}>
{children}
</div>;
}
}
export const Test = () => {
return <Wrapper className="test">Hi there</Wrapper> // works now
}
这篇关于在TypeScrip Reaction应用程序中指定特定道具并接受常规的HTML道具的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在TypeScrip Reaction应用程序中指定特定道具并接受
基础教程推荐
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 直接将值设置为滑块 2022-01-01