单独的使用typescript
并不会导致学习成本很高,但是绝大部分前端开发者的项目都是依赖于框架的
例如和vue
、react
这些框架结合使用的时候,会有一定的门槛
使用 TypeScript
编写 react
代码,除了需要 typescript
这个库之外,还需要安装@types/react
、@types/react-dom
npm i @types/react -s
npm i @types/react-dom -s
至于上述使用@types
的库的原因在于,目前非常多的javascript
库并没有提供自己关于 TypeScript
的声明文件
所以,ts
并不知道这些库的类型以及对应导出的内容,这里@types
实际就是社区中的DefinitelyTyped
库,定义了目前市面上绝大多数的JavaScript
库的声明
所以下载相关的javascript
对应的@types
声明时,就能够使用使用该库对应的类型定义
在编写react
项目的时候,最常见的使用的组件就是:
主要作用是用于展示UI
,如果使用js
声明,则如下所示:
import * as React from 'react'
export const Logo = props => {
const { logo, className, alt } = props
return (
<img src={logo} className={className} alt={alt} />
)
}
但这时候ts
会出现报错提示,原因在于没有定义porps
类型,这时候就可以使用interface
接口去定义porps
即可,如下:
import * as React from 'react'
interface IProps {
logo?: string
className?: string
alt?: string
}
export const Logo = (props: IProps) => {
const { logo, className, alt } = props
return (
<img src={logo} className={className} alt={alt} />
)
}
但是我们都知道props
里面存在children
属性,我们不可能每个porps
接口里面定义多一个children
,如下:
interface IProps {
logo?: string
className?: string
alt?: string
children?: ReactNode
}
更加规范的写法是使用React
里面定义好的FC
属性,里面已经定义好children
类型,如下:
export const Logo: React.FC<IProps> = props => {
const { logo, className, alt } = props
return (
<img src={logo} className={className} alt={alt} />
)
}
可以是一个类组件且存在props
和state
属性
如果使用typescript
声明则如下所示:
import * as React from 'react'
interface IProps {
color: string,
size?: string,
}
interface IState {
count: number,
}
class App extends React.Component<IProps, IState> {
public state = {
count: 1,
}
public render () {
return (
<div>Hello world</div>
)
}
}
上述通过泛型对props
、state
进行类型定义,然后在使用的时候就可以在编译器中获取更好的智能提示
关于Component
泛型类的定义,可以参考下 React 的类型定义文件 node_modules/@types/react/index.d.ts
,如下所示:
class Component<P, S> {
readonly props: Readonly<{ children?: ReactNode }> & Readonly<P>;
state: Readonly<S>;
}
从上述可以看到,state
属性也定义了可读类型,目的是为了防止直接调用this.state
更新状态
受控组件的特性在于元素的内容通过组件的状态state
进行控制
由于组件内部的事件是合成事件,不等同于原生事件,
例如一个input
组件修改内部的状态,常见的定义的时候如下所示:
private updateValue(e: React.ChangeEvent<HTMLInputElement>) {
this.setState({ itemText: e.target.value })
}
常用Event
事件对象类型:
T
接收一个DOM
元素类型
上述只是简单的在react
项目使用typescript
,但在编写react
项目的时候,还存在hooks
、默认参数、以及store
等等......
typescript
在框架中使用的学习成本相对会更高,需要不断编写才能熟练