- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
例如。给定以下代码。我在最后一个 compat[k] 上收到 typescript 错误,错误说
Type 'keyof T' cannot be used to index type 'Partial<CompatType>'
export type KeysOfType<T, U, B = false> = {
[P in keyof T]: B extends true
? T[P] extends U
? U extends T[P]
? P
: never
: never
: T[P] extends U
? P
: never;
}[keyof T];
export type BigIntKeys<T> = KeysOfType<T, bigint, true>
export type CompatType<T> = Omit<T, BigIntKeys<T>> &
{
[Property in BigIntKeys<T>]: string;
};
export function compatModel<T>(model: T): CompatType<T> {
const compat: Partial<CompatType<T>> = {};
for (const k of Object.keys(model) as Array<keyof T>) {
const v = model[k];
compat[k] = typeof v === "bigint" ? v.toString() : v;
}
return compat as CompatType<T>;
};
类型应该在它们的键上完全重叠,但对象上的值的类型不同。这应该意味着我可以使用一个上的键来索引另一个,但它不是以这种方式出现的。我有什么误解或我错了吗?
最佳答案
这是 TypeScript 的设计限制;见microsoft/TypeScript#28884 .根据this comment ,“使用 Pick<T, K>
或通过其他方式构建的高阶类型的互补子集,不可分配回该高阶类型。”
所以像 Omit<T, K> & Record<K, string>
这样的类型其中 K extends keyof T
不会被视为具有与 T
相同的键,即使它几乎必须。编译器比较 Exclude<keyof T, K> | Extract<keyof T, K>
和 keyof T
但在 T
时不认为它们相等和/或 K
未指定 generic类型:
function foo<T, K extends keyof T>(a: keyof T) {
const b: Extract<keyof T, K> | Exclude<keyof T, K> = a; // error!
}
对于任何特定类型T
和 K
, 编译器可以完全评估 Extract<keyof T, K> | Exclude<keyof T, K>
并看到它与 keyof T
相同,但是当T
和/或 K
不是特定类型,编译器延迟此评估,因此它不知道它们是否相同。
您可以做的一件事是构建 CompatType
作为同态 mapped type直接来自 T
,并使用 conditional type决定特定键是否为 K
来自 keyof T
将是 BigIntKeys<T>
的一部分并相应地选择值类型:
type CompatType<T> = { [K in keyof T]:
T[K] extends bigint ? bigint extends T[K] ? string : T[K] : T[K]
}
这会产生更好看的类型,
type Check = CompatType<{ a: string, b: bigint, c: number, d: boolean }>;
/* type Check = {
a: string;
b: string;
c: number;
d: boolean;
} */
并且编译器知道 CompatType<T>
肯定与 T
具有相同的键,即使是通用的 T
:
export function compatModel<T>(model: T): CompatType<T> {
const compat: Partial<CompatType<T>> = {};
for (const k of Object.keys(model) as Array<keyof T>) {
const v = model[k];
compat[k]; // no error here
compat[k] = typeof v === "bigint" ? v.toString() : v; // still error here, unrelated
}
return compat as CompatType<T>;
};
当然,当您尝试分配 typeof v === "bigint" ? v.toString() : v
时,您仍然会遇到错误。至 compat[k]
,但那是因为编译器并不真正知道如何验证某些东西是否可分配给条件类型(参见 microsoft/TypeScript#33912 ),也不理解 compat[k]
类型之间的相关性。当被写入和 typeof v === "bigint" ? v.toString() : v
的类型时从中读取时(请参阅 microsoft/TypeScript#30581,尤其是根据 microsoft/TypeScript#30769 写入联合需要交集这一事实)。这些问题超出了问题的范围,这只是“为什么 keyof
对我不起作用”。
无论如何,在您确定自己所做的是正确的但编译器不正确的情况下,您可以使用type assertions。或 the any
type放宽类型检查以使编译器满意。例如:
export function compatModel<T>(model: T): CompatType<T> {
const compat: Partial<Record<keyof T, any>> = {};
for (const k of Object.keys(model) as Array<keyof T>) {
const v = model[k];
compat[k] = typeof v === "bigint" ? v.toString() : v;
}
return compat as CompatType<T>;
};
这里我们告诉编译器不要担心 compat
的属性值类型,我们只是返回它 as CompatType<T>
.只要您绝对 100% 确定输入的内容是正确的,就可以这样做。虽然,您可能不应该那么确定:
const hmm = compatModel({ a: Math.random() < 10 ? 3n : 3 });
hmm.a // number | bigint
if (typeof hmm.a !== "number") {
3n * hmm.a; // no error at compile time, but runtime 💥 "can't convert BigInt to number"
}
a
的类型属性是 number | bigint
, 根据 CompatType<{a: number | bigint}>
的任一定义会变成{a: number | bigint}
而不是正确的 {a: number | string}
.所以编译器认为 hmm.a
可能是 bigint
即使那是不可能的。这里也有修复,但这些也超出了范围,答案已经比我想要的要长。
这只是一个警告,您在使用类型断言或 any
时应格外小心。克服编译器错误,因为这样的错误更有可能泄漏。
关于typescript - 当两种类型都定义了相同的键但值的类型不同时,为什么我不能在另一种类型上使用一种类型的 keyof,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70129094/
我正在尝试编写一个相当多态的库。我遇到了一种更容易表现出来却很难说出来的情况。它看起来有点像这样: {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE
谁能解释一下这个表达式是如何工作的? type = type || 'any'; 这是否意味着如果类型未定义则使用“任意”? 最佳答案 如果 type 为“falsy”(即 false,或 undef
我有一个界面,在IAnimal.fs中, namespace Kingdom type IAnimal = abstract member Eat : Food -> unit 以及另一个成功
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between (type)value and type(va
在 C# 中,default(Nullable) 之间有区别吗? (或 default(long?) )和 default(long) ? Long只是一个例子,它可以是任何其他struct类型。 最
假设我有一个案例类: case class Foo(num: Int, str: String, bool: Boolean) 现在我还有一个简单的包装器: sealed trait Wrapper[
这个问题在这里已经有了答案: Create C# delegate type with ref parameter at runtime (1 个回答) 关闭 2 年前。 为了即时创建委托(dele
我正在尝试获取图像的 dct。一开始我遇到了错误 The function/feature is not implemented (Odd-size DCT's are not implemented
我正在尝试使用 AFNetworking 的 AFPropertyListRequestOperation,但是当我尝试下载它时,出现错误 预期的内容类型{( “应用程序/x-plist” )}, 得
我在下面收到错误。我知道这段代码的意思,但我不知道界面应该是什么样子: Element implicitly has an 'any' type because index expression is
我尝试将 SignalType 从 ReactiveCocoa 扩展为自定义 ErrorType,代码如下所示 enum MyError: ErrorType { // .. cases }
我无法在任何其他问题中找到答案。假设我有一个抽象父类(super class) Abstract0,它有两个子类 Concrete1 和 Concrete1。我希望能够在 Abstract0 中定义类
我想知道为什么这个索引没有用在 RANGE 类型中,而是用在 INDEX 中: 索引: CREATE INDEX myindex ON orders(order_date); 查询: EXPLAIN
我正在使用 RxJava,现在我尝试通过提供 lambda 来订阅可观察对象: observableProvider.stringForKey(CURRENT_DELETED_ID) .sub
我已经尝试了几乎所有解决问题的方法,其中包括。为 提供类型使用app.use(express.static('public'))还有更多,但我似乎无法为此找到解决方案。 index.js : imp
以下哪个 CSS 选择器更快? input[type="submit"] { /* styles */ } 或 [type="submit"] { /* styles */ } 只是好
我不知道这个设置有什么问题,我在 IDEA 中获得了所有注释(@Controller、@Repository、@Service),它在行号左侧显示 bean,然后转到该 bean。 这是错误: 14-
我听从了建议 registering java function as a callback in C function并且可以使用“简单”类型(例如整数和字符串)进行回调,例如: jstring j
有一些 java 类,加载到 Oracle 数据库(版本 11g)和 pl/sql 函数包装器: create or replace function getDataFromJava( in_uLis
我已经从 David Walsh 的 css 动画回调中获取代码并将其修改为 TypeScript。但是,我收到一个错误,我不知道为什么: interface IBrowserPrefix { [
我是一名优秀的程序员,十分优秀!