gpt4 book ai didi

typescript - 为什么 TypeScript 在推断函数的返回类型时不会自动使用文字类型?

转载 作者:行者123 更新时间:2023-12-03 23:38:19 25 4
gpt4 key购买 nike

考虑以下片段:

//
// Case 1: return type is { statusCode: number }
//
export const handler = () => {
return {
statusCode: 200
}
}

//
// Case 2: return type is { statusCode: 200 }
//
export const handler = () => {
return {
statusCode: 200 as const
}
}
由于该函数将始终返回相同的值(没有替代流程),在我看来,第二种情况应该是默认值。或者,换句话说,我认为 TypeScript 在默认情况下应该总是尽可能地具体。
为什么需要手动指定返回类型,或者使用 as const ?

最佳答案

领域statusCode在返回的对象上是可变的。因此,如果更改,类型将不再相同,这会破坏类型安全。

let obj = handler();
obj.statusCode = 404; // This is allowed but breaks the type { statusCode: 200 }

关于typescript - 为什么 TypeScript 在推断函数的返回类型时不会自动使用文字类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67969380/

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