Whi*_*her 140 typescript
export class Thread {
id: string;
lastMessage: Message;
name: string;
avatarSrc: string;
constructor(id?: string,
name?: string,
avatarSrc?: string) {
this.id = id || uuid();
this.name = name;
this.avatarSrc = avatarSrc;
}
}
Run Code Online (Sandbox Code Playgroud)
在id?有什么?呢?
Fid*_*kaj 160
将参数标记为可选.
Mas*_*iri 29
parameter?: type 是一个简写 parameter: type | undefined
DvG*_*DvG 22
这是使变量为Optional类型.如果未使用此变量,则声明的变量显示为" undefined ".
export interface ISearchResult {
title: string;
listTitle:string;
entityName?: string,
lookupName?:string,
lookupId?:string
}
Run Code Online (Sandbox Code Playgroud)
的?中的参数是表示一个可选参数。Typescript 编译器不需要填写这个参数。更多细节见下面的代码示例:
// baz: number | undefined means: the second argument baz can be a number or undefined
// = undefined, is default parameter syntax,
// if the parameter is not filled in it will default to undefined
// Although default JS behaviour is to set every non filled in argument to undefined
// we need this default argument so that the typescript compiler
// doesn't require the second argument to be filled in
function fn1 (bar: string, baz: number | undefined = undefined) {
// do stuff
}
// All the above code can be simplified using the ? operator after the parameter
// In other words fn1 and fn2 are equivalent in behaviour
function fn2 (bar: string, baz?: number) {
// do stuff
}
fn2('foo', 3); // works
fn2('foo'); // works
fn2();
// Compile time error: Expected 1-2 arguments, but got 0
// An argument for 'bar' was not provided.
fn1('foo', 3); // works
fn1('foo'); // works
fn1();
// Compile time error: Expected 1-2 arguments, but got 0
// An argument for 'bar' was not provided.
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
78234 次 |
| 最近记录: |