作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道在对象上指定允许的键/值组合的最佳方法是什么。假设 Object[name] = 'bana' -> Object[type] === 'fruit'。
我想出了以下内容:
type Base = {
weight?: number
unit?: string
}
interface Item<P, K> extends Base {
name: P
type: K
}
type AllowedType =
| Item<'bana', 'fruit'>
| Item<'teddy bear', 'toy'>
| ....
有没有更简洁的方法?
最佳答案
我认为你已经拥有的很好。
但是您可以避免手动合并所有 Item
通过在单个类型中捕获对组合,而不是使用映射类型来构造联合。就像是:
type AllowedPairs = {
'bana': 'fruit',
'teddy bear': 'toy'
}
然后你可以重建你的
AllowedType
使用:
type AllowedType = {
[K in keyof AllowedPairs]: {name: K, type: AllowedPairs[K]}
}[keyof AllowedPairs]
在添加新的有效对时,这将节省一些击键次数,尽管我发现它的可读性比原来的差一些。您可以决定这是否是可接受的权衡。
关于javascript - 如何在 Typescript 中指定对象上允许的键/值组合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68399113/
我是一名优秀的程序员,十分优秀!