可选链操作符( ?. )允许读取位于连接对象链深处的属性的值,而不必明确验证链中的每个引用是否有效。?. 操作符的功能类似于 . 链式操作符,不同之处在于,在引用为空(nullish ) (null 或者 undefined) 的情况下不会引起错误,该表达式短路返回值是 undefined。与函数调用一起使用时,如果给定的函数不存在,则返回 undefined。
之前:
let nestedProp = obj.first && obj.first.second;
使用可选链操作符?.
let nestedProp = obj.first?.second;
连用可选链操作符
let customer = { name: "Carl", details: { age: 82, location: "Paradise Falls" // details 的 address 属性未有定义 } }; let customerCity = customer.details?.address?.city;
“??”
let arr = res?.res?.data ?? []
这个??的意思是当左边的值为null或undefained的时候 就取??右边的值 。
可选链接,还可以跟函数使用在一起,更多可以看文档:
https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/可选链
最新的浏览器对可选链接支持还可以, node v12 暂时还不直接支持。
修改时间 2021-01-14
声明:本站所有文章和图片,如无特殊说明,均为原创发布。商业转载请联系作者获得授权,非商业转载请注明出处。