我已经使用安全导航运算符对象来加载异步调用,这是非常了不起的.我以为我可以为
Arrays重现相同但它在我的Angular代码中显示模板解析错误.我知道* ngIf是一种替代解决方案,但是有一种更简单(通过代码)的方式就像安全导航运算符一样吗?
<div class="mock"> <h5>{{data?.title}}</h5> //This works <h6>{{data?.body}}</h6> //This works <h6>{{simpleData?[0]}}</h6> // This is what I tried to implement </div>
解决方法
is there a more simpler(by code) way just like the Safe Navigation Operator?
condition ? expr1 : expr2
<h6>{{simpleData?simpleData[0]:''}}</h6>