javascript - TypeScript用接口如何描述数组的问题
问题描述
interface Squares { squares: (null | string)[]}interface History { [index: number]: Squares}interface State { history: History stepNumber: number xIsNext: Boolean}class Game extends React.Component { state: State constructor() { super() this.state = { history: [{squares: Array(9).fill(null) }], stepNumber: 0, xIsNext: true } } handleClick(i: number) { const history = this.state.history.slice(0, this.state.stepNumber + 1) }
以上代码为项目代码的一部分,项目使用React+TypeScript开发,上面的代码在vscode中提示错误:Property ’slice’ does not exist on type ’History’.。
slice是数组方法,如果换成类似let a: string[] = [’Hello’]这种方式则slice方法可以正常使用不会报错。
题主目前是还是TypeScript初学者,想问一下各位:
这种问题产生的原因是什么
类似this.state这种结构的数据应该怎么用interface描述(主要是history这个数组怎么描述)
问题解答
回答1:原因就是接口没有正确继承数组接口,导致数组的slice方法定义丢失
改成下面这样
interface History extends Array<Squares>{}
相关文章:
1. java - 3个dao的数据根据请求参数选择一个映射到一个url上,怎么写比较好?2. html5 - 百度Ueditor代码高亮和代码段滚动条冲突是怎么回事?3. docker 17.03 怎么配置 registry mirror ?4. javascript - 关于一段 for 循环代码执行顺序的问题5. javascript - 读取页面源码,页面中所有的换行都被当成<br/>读取出来 了,,求解应该怎么让它被正确的解析6. docker网络端口映射,没有方便点的操作方法么?7. javascript - 静态页面引公共头尾文件,js怎么写吖?8. javascript - vue 数据更新了。但是dom没有更新,,,,,如图9. javascript - JS中如何实现 DIV内部和鼠标的距离10. docker绑定了nginx端口 外部访问不到