ฉันใช้ typescript กับ React ฉันมีปัญหาในการทำความเข้าใจวิธีใช้การอ้างอิงเพื่อรับการพิมพ์แบบคงที่และ Intellisense เกี่ยวกับโหนดปฏิกิริยาที่อ้างอิงโดยผู้อ้างอิง รหัสของฉันมีดังนี้
import * as React from 'react';
interface AppState {
count: number;
}
interface AppProps {
steps: number;
}
interface AppRefs {
stepInput: HTMLInputElement;
}
export default class TestApp extends React.Component<AppProps, AppState> {
constructor(props: AppProps) {
super(props);
this.state = {
count: 0
};
}
incrementCounter() {
this.setState({count: this.state.count + 1});
}
render() {
return (
<div>
<h1>Hello World</h1>
<input type="text" ref="stepInput" />
<button onClick={() => this.incrementCounter()}>Increment</button>
Count : {this.state.count}
</div>
);
}}
refs
แอตทริบิวต์คลาสจะเลิกใช้งานในเวอร์ชัน React ที่กำลังจะมีขึ้น