在角度2中等效的空合并运算符(??)是什么。
在C#中我们可以执行操作:
string str = name ?? FirstName :"First Name is null";
答案 0 :(得分:79)
合并是通过||
运算符执行的,即
let str:string = name || FirstName || "name is null and FirstName is null";
您还可以阅读this问题了解更多详情和解释。
答案 1 :(得分:3)
Typescript 在 3.7
版本中引入了空合并,因此如果您在 3.7
或更高版本上运行,您可以简单地编写:
const str = name ?? firstName ?? "Name and First Name are both null";
const x = foo?.bar.baz() ?? bizz();
见https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#nullish-coalescing。
从 Angular 12 开始,您还可以在模板中使用 ??
。
答案 2 :(得分:1)
也许您想要实现的目标是:
string str = name ? name : FirstName ? FirstName : "First Name is null";
答案 3 :(得分:0)