什么?意味着角度5?

前端之家收集整理的这篇文章主要介绍了什么?意味着角度5?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Why we use “?” operator in template binding in angular 22个
我知道如果我有像product.id == 1这样的东西?东西:不是东西.这意味着如果id = 1,则选择“stuff”.如果没有,那么选择“不是东西”.以下是什么意思:
product?.id.name
?手段安全 navigation operator

来自Docs

The Angular safe navigation operator (?.) is a fluent and convenient
way to guard against null and undefined values in property paths. Here
it is,protecting against a view render failure if the currentHero is
null.

这特别意味着如果绑定到视图的值为null,则它应返回null,否则返回实际值,这样在呈现模板时不会出现任何问题.

在您提供的上述示例代码中,

产品?.id.name

它检查生成对象是否存在,然后检查是否有id.既然你没有?在id之后.它将抛出一个错误“无法读取’name’未定义的属性”.

原文链接:https://www.f2er.com/angularjs/142512.html

猜你在找的Angularjs相关文章