可选链操作符(--)

什么是可选链操作符(?.)

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

比如,思考一个存在嵌套结构的对象 obj。不使用可选链的话,查找一个深度嵌套的子属性时,需要验证之间的引用,例如:

1
let nestedProp = obj.first && obj.first.second;

为了避免报错,在访问obj.first.second之前,要保证 obj.first 的值既不是 null,也不是 undefined。

如果只是直接访问 obj.first.second,而不对 obj.first 进行校验,则有可能抛出错误。

有了可选链操作符(?.),在访问 obj.first.second 之前,不再需要明确地校验 obj.first 的状态,再并用短路计算获取最终结果:

1
let nestedProp = obj.first?.second;

这等价于以下表达式,但实际上没有创建临时变量:

1
2
let temp = obj.first;
let nestedProp = ((temp === null || temp === undefined) ? undefined : temp.second);

?. 操作符的功能类似于 . 链式操作符,不同之处在于:

在引用为空(nullish) (null 或者 undefined) 的情况下不会引起错误,该表达式短路返回值是: undefined

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

当尝试访问可能不存在的对象属性时,使用可选链操作符将会使表达式更短、更简明

有两点需要我们留意:

  1. 如果存在一个属性名且不是函数, 使用 ?. 仍然会产生一个 TypeError 异常 (x.y is not a function).
1
let result = someInterface.customMethod?.();

如果 someInterface 自身是 null 或者 undefined ,异常 TypeError 仍会被抛出。

如果你希望允许 someInterface 也为 null 或者 undefined,那么你需要像这样写 someInterface?.customMethod?.()

  1. 可选链不能用于赋值
1
2
let object = {};
object?.property = 1; // Uncaught SyntaxError: Invalid left-hand side in assignment

如何启用这个功能

1
2
3
4
5
6
7
8
9
10
// install
npm install --save-dev @babel/plugin-proposal-optional-chaining

// babel config
{
"plugins": [
"@babel/plugin-proposal-optional-chaining" //可选链
"@babel/plugin-proposal-nullish-coalescing-operator", //双问号
]
}

可选链操作符(?.) 是如何工作的

1
2
3
4
5
const a = {
b: 1
};

console.log(a?.b);

会被转换成:

1
2
3
4
5
const a = {
b: 1
};

console.log(a === null ? void 0 : a.b);

如果层级更深, 会创建临时变量用于记录:

1
2
3
4
5
6
7
8
const a = {
b: {
c: 1,
d: 2,
}
};

console.log(a?.b?.c)

会被转换成:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var _a$b;

const a = {
b: {
c: 1,
d: 2
}
};
console.log(
a === null || a === void 0
? void 0
: (_a$b = a.b) === null || _a$b === void 0
? void 0
: _a$b.c
);