使用ts的时候,这里的`type?: string` 的问号是什么意思?

在使用ts的时候,这里的type?: string 的问号是什么意思?

interface NodeConfig {
  id: string;
  type?: string;
  x?: number;
  y?: number;
  size?: number | number[];
  position?: 'center' | 'top' | 'left' | 'right';
}
阅读 1.9k
1 个回答

表示那个字段是可选的

https://www.typescriptlang.or...

Optional Properties

Object types can also specify that some or all of their properties are optional. To do this, add a ? after the property name:

function printName(obj: { first: string; last?: string }) {
// ...
}
// Both OK
printName({ first: "Bob" });
printName({ first: "Alice", last: "Alisson" });
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Microsoft
子站问答
访问
宣传栏