【发布时间】:2019-07-15 21:29:31
【问题描述】:
我在 React & TypeScript 中使用 Ant Design Carousel 组件。 Carousel 组件上有“next”和“prev”方法。
代码运行,但是 TSLint 突出显示“carousel”并抛出此错误“Property 'carousel' does not exist on type 'StyledCarousel'.ts(2339)”。我缺少一些打字声明吗?
Ant 设计文档Here
import React from 'react';
import { Carousel, Icon } from 'antd';
class StyledCarousel extends React.Component {
constructor(props: any) {
super(props);
this.state = {};
this.next = this.next.bind(this);
this.previous = this.previous.bind(this);
this.carousel = React.createRef();
}
public next = () => {
this.carousel.next();
};
public previous = () => {
this.carousel.prev();
};
public render() {
const props = {
dots: true,
infinite: true,
speed: 500,
slidesToShow: 1,
slidesToScroll: 1,
};
return (
<div>
<Icon type="left-circle" onClick={this.previous} />
<Carousel ref={node => (this.carousel = node)} {...props}>
<h1>Item 1</h1>
<h1>Item 2</h1>
<h1>Item 3</h1>
</Carousel>
<Icon type="right-circle" onClick={this.next} />
</div>
);
}
}
export default StyledCarousel;
【问题讨论】:
-
使用
React.createRef()时,您只想将引用提供给ref属性。<Carousel ref={this.carousel} {...props}>
标签: javascript reactjs typescript antd ref