类型化变量的 TypeScript 空对象

新手上路,请多包涵

说我有:

 type User = {
  ...
}

我想创建一个新的 user 但将其设置为空对象:

 const user: User = {}; // This fails saying property XX is missing
const user: User = {} as any; // This works but I don't want to use any

我该怎么做呢?我不希望变量是 null

原文由 Kousha 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 2.5k
2 个回答

注意事项

以下是评论中的两个值得注意的警告。

您希望用户是 User | {}Partial<User> 类型,或者您需要重新定义 User 类型以允许空对象。现在,编译器正确地告诉你用户不是用户。 – jcalz

我不认为这应该被认为是一个正确的答案,因为它创建了一个不一致的类型实例,破坏了 TypeScript 的整个目的。在此示例中,属性 Username 未定义,而类型注释表示它不能未定义。 – Ian Liu Rodrigues

回答

TypeScript 的设计目标之一“在正确性和生产力之间取得平衡”。 如果这样做对您有帮助,请使用 类型断言 为类型化变量创建空对象。

 type User = {
    Username: string;
    Email: string;
}

const user01 = {} as User;
const user02 = <User>{};

user01.Email = "foo@bar.com";

这是 一个适合您的工作示例

以下是使用建议的类型断言。

原文由 Shaun Luttin 发布,翻译遵循 CC BY-SA 4.0 许可协议

我想要的是 intellisense 对中间件链的帮助。 Record<string, never> 为我工作。

 type CtxInitialT = Record<string, never>;
type Ctx1T = CtxInitialT & {
  name: string;
};
type Ctx2T = Ctx1T & {
  token: string;
};

cont ctx: CtxInitialT = {};
// ctx.name = ''; // intellisense error Type 'string' is not assignable to type 'never'
cont ctx1: Ctx1T = middleware1AugmentCtx(ctx);
// ctx1.name = 'ddd'; // ok
// ctx1.name1 = ''; // intellisense error Type 'string' is not assignable to type 'never'
cont ctx2: Ctx2T = middleware2AugmentCtx(ctx1);
// ctx2.token = 'ttt'; // ok
// ctx2.name1 = ''; // intellisense error Type 'string' is not assignable to type 'never'

原文由 Alexey Volodko 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进