可选链操作符(?.)

在取深层对象的时候,往往会因为后端,字段变化,而没有及时通知前端而报错,导致代码卡住

就要多写很多个if判断是否为空

 

方法:可选链操作符( ?. )允许读取位于连接对象链深处的属性的值,而不必明确验证链中的每个引用是否有效。

?. 操作符的功能类似于 . 链式操作符,不同之处在于,在引用为空(nullish ) (null 或者 undefined) 的情况下不会引起错误,该表达式短路返回值是 undefined

与函数调用一起使用时,如果给定的函数不存在,则返回 undefined

const adventurer = {
  name: 'Alice',
  cat: {
    name: 'Dinah'
  }
};

const dogName = adventurer.dog?.name;
console.log(dogName);
// expected output: undefined

console.log(adventurer.someNonExistentMethod?.());
// expected output: undefined

附上mdn地址:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/Optional_chaining

posted on 2022-03-07 17:34  sss大辉  阅读(509)  评论(0编辑  收藏  举报

导航