TS2322错误解决方案

废话

之前写C#,所以使用强类型的语言比较习惯,用js觉得有些自由散漫了,所以学习学习ts,结果感觉ts也有好多坑,好多限制,但是又不想使用@ts-ingore。多少有点强迫症吧

从网上找了好久都没找到方法。以下方法不一定是主流或正确的做法,只是在webstorm中不会再提示错误了,可以正常编译成js代码和运行。

仅供参考

提示错误的代码

定义一个接口,用来表示自己的类型

export interface Options {
    key1: number;
    key2: boolean;
    key3?: string
}

定义两个Options类型的变量

let options1:Options = {
    key1: 0,
    key2: false
    key3: "option1"
}

let options2:Options = <Options>{
    key1: 3,
    key2: type
}

使用for…in对options1遍历给options2赋值

  • TS2322: Type ‘number | boolean’ is not assignable to type ‘never’.   Type ‘number’ is not assignable to type ‘never’.
let key: keyof Options;
for (key in options) {
    if(option1.hasOwnProperty(key)){
        option2[key]/*ts2322*/ = options[key];
    }
}

  • TS7053: Element implicitly has an ‘any’ type because expression of type ‘string’ can’t be used to index type ‘Options’.   No index signature with a parameter of type ‘string’ was found on type ‘Options’.
for (const key in options) {
    if(option1.hasOwnProperty(key)){
        Settings.options[key]/*ts7053*/ = options[key]/*ts7053*/;
    }
}

修改后的代码

将定义的接口继承Record即可,指定key及值的类型

export interface Options extends Record<string, any>
    key1: number;
    key2: boolean
}

说明及参考

TypeScript版本:4.7.4

编辑器webstorm2022.3

【1】TS 里几个常用的内置工具类型(Record、Partial 、 Required 、 Readonly、 Pick 、 Exclude 、 Extract 、 Omit)的使用_ts partial_织_网的博客-CSDN博客

【2】如何在Typescript中使用for…in ? - 掘金 (juejin.cn)文章来源地址https://uudwc.com/A/rXYqD

原文地址:https://blog.csdn.net/w1003jpeng/article/details/130482642

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请联系站长进行投诉反馈,一经查实,立即删除!

h
上一篇 2023年07月11日 12:04
下一篇 2023年07月11日 12:04