- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以使用 typescript 定义 state
的键?应该是 lowercase
+ some string
?
type HasSufix = `${Lowercase<string>}Required`
interface SomeShape {
[key: HasSufix]: boolean
}
const state: SomeShape = {
usersRequired: false,
ordersRequired: false,
booksRequired: false,
};
最佳答案
当前 TypeScript 中没有与您想要的 SomeShape
相对应的特定类型类型。 Lowercase<string>
评估为只是 string
;即使这不是真的,pattern template literal types喜欢 `${string}Required`
当前不能用作对象的键类型;见 microsoft/TypeScript#42192想要查询更多的信息。
相反,您可以代表 SomeShape
作为 generic用作候选类型约束的类型。也就是说,你创建了一个类似 ValidSomeShape<T>
的类型。 ,使得 T extends ValidSomeShape<T>
当且仅当 T
是有效的 SomeShape
.它可能看起来像这样:
type ValidSomeShape<T extends object> = { [K in keyof T as
K extends `${infer P}Required` ? `${Lowercase<P>}Required` :
`${Lowercase<Extract<K, string>>}Required`]:
boolean
} extends infer O ? {[K in keyof O]: O[K]} : never;
其工作方式是:编译器
re-maps the keys的
T
对那些有效的;如果 key
K
不以
"Required"
结尾,然后我们附加它。否则,我们在
"Required"
之前转动零件变成自己的小写版本。我们确保属性类型是
boolean
.
extends infer O ? ...
的部分是
trick from the answer to another question这鼓励编译器列出
ValidSomeShape<T>
的实际属性在 IntelliSense 中,而不是显示相当不透明的
ValidSomeShape<T>
姓名。你宁愿看到
{fooRequired: boolean}
在错误消息中而不是
ValidSomeShape<{foo: string}>
.
T
,你可以制作一个通用的辅助函数
asSomeShape()
推断
T
从它的输入:
const asSomeShape = <T extends ValidSomeShape<T>>(obj: T) => obj;
所以,而不是注释
const state: SomeShape = {...}
, 你写
const state = asSomeShape({...})
.
const state = asSomeShape({
usersRequired: false,
ordersRequired: false,
booksRequired: false,
}); // okay
这编译没有错误。但是当你做错事时,注意会发生什么:
const badState1 = asSomeShape({
usersRequired: false,
ordersRequired: 123, // error!
//~~~~~~~~~~~~~~ <-- // Type 'number' is not assignable to type 'boolean'
booksRequired: false,
}); // okay
const badState2 = asSomeShape({
usersRequired: false,
ordersRequired: false,
BooksRequired: false, // error!
//~~~~~~~~~~~~~~~~~~~~
// Object literal may only specify known properties, but 'BooksRequired' does not exist in type
// '{ usersRequired: boolean; ordersRequired: boolean; booksRequired: boolean; }'.
// Did you mean to write 'booksRequired'?
}); // okay
const badState3 = asSomeShape({
users: false, // error!
//~~~~~~~~~~~~
// Object literal may only specify known properties, and 'users' does not exist in type
// '{ usersRequired: boolean; ordersRequired: boolean; booksRequired: boolean; }'
ordersRequired: false,
booksRequired: false,
}); // okay
您可以看到每个失败都会产生有用的错误消息。
ordersRequired
属性是
number
而不是预期的
boolean
;
BooksRequired
属性应该是
booksRequired
;和
users
属性也是错误的(编译器似乎不认为它足够接近
usersRequired
来暗示你应该写它,但它确实说它希望在那里看到
usersRequired
)。
ValidSomeShape<T>
在与尚未验证的对象交互的函数中......就像某些库的面向外部的端点。验证对象后,您可以将其类型扩展为不太精确但非通用的类型,例如
Record<string, boolean>
或其他东西,并将其作为更广泛的类型在您的库中传递:
export function userFacingLibraryFunction<T extends ValidSomeShape<T>>(someShape: T): void {
// now that someShape has been validated, we can pass it to our internal functions:
internalLibraryFunction(someShape);
}
// not exported
function internalLibraryFunction(alreadyValidatedSomeShape: Record<string, boolean>): void {
Object.keys(alreadyValidatedSomeShape).filter(k => alreadyValidatedSomeShape[k]);
}
关于javascript - 带后缀的键类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67646907/
我正在尝试编写一个相当多态的库。我遇到了一种更容易表现出来却很难说出来的情况。它看起来有点像这样: {-# 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 { [
我是一名优秀的程序员,十分优秀!