- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建对象数组的类型。该对象的第一个和第二个键需要匹配。例如:
[{
key1: "hi",
key2: "world"
},{
key1: 1,
key2: 2
},{
key1: true,
key2: false
}]
这是我想出的,但它并不完全有效。我有一个通用类型来定义数组中的对象。调用它生成数组类型时,会引发错误。
type ArrayItem<T> = {
key1: T,
key2: T
}
// This raises an error Generic Type ArrayItem requires 1 type argument
type Array = ArrayItem<T>[]
键入这样的嵌套对象的最佳方法是什么(具有类型推断支持)?
最佳答案
如果您没有 T
的可能类型的有限列表在 ArrayItem<T>
, TypeScript 中没有具体的类型对应于 Array<ArrayItem<T>>
.将这样的东西表示为非泛型类型需要像 existential types 这样的东西。 ,TypeScript 不直接支持。
(如果您确实有一个有限列表,例如 ArrayItem<string> | ArrayItem<number> | ArrayItem<boolean>
,那么您可以像在另一个答案中一样使用联合。)
在 TypeScript 中,最接近此的是泛型类型,在推理和编译器警告方面,最好的做法是将其表示为类似 generic constraint 的内容。 .
一种方法是编写一个通用的辅助函数 asMyArray()
接受 tuple ,编译器将检查元组的每个元素以确保它满足约束。一个障碍是 {key1: "hi", key2: 2}
如果您允许诸如 string | number
之类的内容,则确实满足约束条件如 T
.为了防止编译器愉快地接受所有类型对,我将尝试使其推断 T
来自 key1
仅(请参阅 microsoft/TypeScript#14829 以了解防止从特定推理站点进行推理的方法),然后只需检查 key2
匹配:
type NoInfer<T> = [T][T extends any ? 0 : 1]
const asMyArray = <T extends readonly any[]>(
x: [...({ [K in keyof T]: { key1: T[K], key2: NoInfer<T[K]> } })]) =>
x;
泛型类型参数
T
是对应于
key1
的元组传入数组的每个元素的值。传入的数组,
x
, 是
mapped tuple type .
& {}
位降低
key2
的推理优先级.
[... ]
bit 只是提示编译器推断一个元组而不是一个数组(它无法区分不同的元素),让我们测试一下:
const myArray = asMyArray([{
key1: "hi",
key2: "world"
}, {
key1: 1,
key2: 2
}, {
key1: true,
key2: false
}])
// const asMyArray: <[string, number, boolean]>(...)
你可以看到
T
推断为
[string, number, boolean]
.这成功了,而以下内容,其中
T
以同样的方式推断,失败:
const badArray = asMyArray([{
key1: "hi", key2: 123 // error!
// -------> ~~~~
// number not assignable to string
}, {
key1: 1, key2: "world" // error!
// ----> ~~~~
// string not assignable to number
}, {
key1: true, key2: false
}]);
看起来像你想要的。好的,希望有帮助;祝你好运!
关于typescript - 键入一组泛型推断类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62487613/
当使用模板模板参数时,我如何推断或删除模板模板的模板类型? 考虑以下 SSCCE: #include #include #include using namespace std; templat
假设我有一些特质: trait A[T] { def foo: T } 一个扩展它的类: class B[T](t: T) extends A[T] { def foo = t } 以及父特征的子特征
一边玩-rectypes在某些时候选择 OCaml 我只是迷路了。 这个表达式几乎可以打字: # fun x -> x x;; - : ('a -> 'b as 'a) -> 'b = 但是这里 O
我正在编写一个类似 CRUD 的应用程序,并且通过主键进行大量查找(主键可以有不同的类型)。所以我定义了以下类型类: {-# LANGUAGE MultiParamTypeClasses #-} cl
我已经创建了关系 A 'is functional parent of' B并定义 'has functional parent'作为 'is functional parent of' 的倒数. '
给定一个使用 Kotlin 版本 1.3.61 和 JOOQ 版本 3.13.1 的系统,这样的方法会构建 union正常查询: val selectCommonPart = coalesce
考虑以下错误代码: fun x = if (null x) then 0 else (take 50 x) : (fun (drop 50 x)) 我注意到,我可以毫无问题地将它加载到
给定一个具有以下类型的函数 a: a::x -> Bool 和以下类型的另一个函数 b: b::Bool -> y 我正在尝试找出推断以下函数类型的步骤: c =\d -> d a b 有人可以帮助解
我正在尝试使用 Infer 工具来分析我的应用代码。我关注了these steps每次我尝试运行 infer -- gradle build 时,我都会收到以下错误: infer -- gradle
所以我制作了这个模板来定义内联仿函数: template struct AsFunctor { template std::invoke_result_t operator()(A
是否可以推断 CRTP 基类中模板化成员函数的返回类型? 虽然推断参数类型效果很好,但它因返回类型而失败。考虑以下示例。 #include template struct base { tem
使用 Series.interpolate 很容易在 Pandas.DataFrame 中插入值,如何进行外推? 例如,给定一个如图所示的 DataFrame,我们如何将它外推 14 个月到 2014
我想知道为什么这不起作用(缺少参数类型)? Seq(1,2,3).toSet.map(_ + 1) 但这确实: val foo = Seq(1,2,3).toSet foo.map(_ + 1)
我没有必要使用 SQLite3 shell 工具来维护一个小型数据库。我正在使用 -header -ascii标志,尽管据我所知,这适用于任何输出选择。我正在寻找一种方法来避免对返回的任何一个值的类型
我有以下组件 type PropTypes = { items: T[], header: (item: T) => React.Element, body: (item: T) => R
我想在 Eclipse/JSDT 中指定实例变量的类型,如下例所示: /** * @constructor */ function A() { /** @type Node */
我正在用 Python 编写一个方法,它看起来像这样: def rgb_to_grayscale(image): print(image.shape) pass 此处预期的类型是 nu
我有一个 my_values 数组,我正在尝试为其推断 true_values 数组中最接近、较小的值。使用下面的 find_nearest 函数并不能完成我想要的。我如何追加它以找到最近的、较小的值
在下面的代码中: template int b(int q, const std::array& types) { int r = q; for (int t : types)
在 Pandas DataFrame 中插入 NaN 单元非常容易: In [98]: df Out[98]: neg neu pos av
我是一名优秀的程序员,十分优秀!