在我的react和typescript应用程序中,我使用:onChange={(e) => data.motto = (e.target as any).value}
。
如何正确定义类的类型,这样我就不必使用来绕过类型系统了any
?
export interface InputProps extends React.HTMLProps<Input> {
...
}
export class Input extends React.Component<InputProps, {}> {
}
如果我把target: { value: string };
我得到:
ERROR in [default] /react-onsenui.d.ts:87:18
Interface 'InputProps' incorrectly extends interface 'HTMLProps<Input>'.
Types of property 'target' are incompatible.
Type '{ value: string; }' is not assignable to type 'string'.
并确保您拥有
"lib": ["dom"]
自己的tsconfig
。