gpt4 book ai didi

typescript - 使用点表示法时 tslint prefer-const 警告

转载 作者:搜寻专家 更新时间:2023-10-30 20:37:59 25 4
gpt4 key购买 nike

interface obj {
bar: string
}

function randomFunction() {
let foo: obj = { bar: "" }
foo.bar = "hip"
}

let snack: obj = { bar: "" }
snack.bar = "hop"

我从 tslint 收到这个警告:

Identifier 'foo' is never reassigned; use 'const' instead of 'let'. (prefer-const)

有趣的是,在第二种情况下,变量 snack 我没有收到此警告。

我可以用/* tslint:disable: prefer-const */

我还没有在 tslint project 上找到任何错误报告.由于我是 typescript 的新手,我想知道:我这里有什么问题吗?

最佳答案

tslint 要求您将 let 更改为 const,因为标识符 foo 未重新分配。

可以通过编写 const 来消除错误:

const foo: obj = { bar: "" };
foo.bar = "hip";

请注意,const 修饰符仅表示您无法重新分配标识符:

 const foo = { bar: "" };
foo = { bar: "" }; // error

它不会使对象本身变为只读。

关于typescript - 使用点表示法时 tslint prefer-const 警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49701841/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com