1、错误 “import sources within a group must be alphabetized”
是说 引入资源,应该有顺序
需要使用
1 | import * as source1 from '../../../A' |
报错的时候会有提示比如: 【4,1】
会有一个行提示,在比如上面的4,第四行打上空格
2、对于使用 injectIntl函数导致的 实参与形参 类型不一致的问题
报错:
Argument of type xx is not assignable to xx <Iprops& InjectIntlProps>
对于 在injetIntl()函数中的参数问题,阅读文档之后,发现其需要传入的是一个 ReactClass 类型,但是此时的HomePage 是一个ReactClass ,只是在定义这个类的时候对Props,States使用了接口声明类型,不明白到底是因为什么导致了这个错误
使用了 对HomePage 不进行类型检查的方式
1 | InjectIntl(HomePage as any) |
在查找的过程中了解到一个泛型的概念也会导致这种错误
1 | declare function decorate <T>() (component: T) => T |
调用 decorate函数的错误方式
decorate
正确的
1 | decorate<typeof Foo> ()(Foo) |
3、对于那个react-markdown文件的导入问题
一开始查看了 react-markdown 这个库 导出来的是个什么东西,发现是个函数,还写了个这个函数的声明文件
1 | declare function name(props: any): any |
是没有用的
后面查看 文档渲染出来的 text 打印出来看 发现没有导出来 markdown 文件
于是 修改markdown 文件的路径
1 | import releasepath from '.md' |
其他的都没有改,可以渲染了
另外:
对于 package.json 文件,没有使用这样的引入方式
1 | import * as name from '.json' |
而是
1 | import { pname } from '.json' |
也是可以的
4、一个 interface 属性|方法不能初始化 、一个Type属性|方法不能初始化
5、window.location = “#” 报错 后面使用 window.localtion.href 后来使用的是 window.location.href = ‘’
因为 TypeScript 会认为 window.location是一个对象 但是 “#” 不是 Location 对象的类型 ,但是官网上的介绍又说 localtion后面可以跟一个string 、
6、对于一个state的修改 、不再使用之前的那种接口声明的方式,因为state 是 一个只读属性 不可以通过 this.state.xxx = ‘’ 来修改,
这里使用显式的 Readonly 定义 state 属性,
1 | export const initialState = { redict: false } |
7、对于引入的js 文件,这里没有修改 API.js为 .tsx
而是为 API.js 定义了声明文件
1 | declare module '*.js' |
8、为事件参数 添加类型,了解了简单的两种 事件的参数类型 第一种用于 submit 第二种用于 鼠标事件
1 | onsubmit(e: FormEvent): void |
为这些事件的 e 添加类型 有些类型对不上,可以在错误提示中看到正确类型
9、处理错误:
Argument of type “componentClass<Pick<any,never>,componentState>” is not assignable to para of type ‘ComponnetConstructor<Pick<any,never>& InjectIntlProps>’
很明显 还是形参实参的类型对不上,
1 | React.component<any&InjectIntlProps,any > |
其实每次解决这种错误的时候都需要看看 报错的信息