欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

ES11可选链操作符

时间:2023-05-21

想要拿到host需要判断 config是否存在再判断config.db最后才能拿到config.db.host 非常难受

function main(config) { let dbHost = config && config.db && config.db.host console.log(dbHost); //127.0.0.1 } main({ db:{ host:'127.0.0.1', username:'locelhost' }, cache:{ host:'https://www.cnblogs.com/Lucky-daisy', username:'daisy' }, })

使用ES11的可选链操作符 ?.直接在链式调用的时候判断,左侧的对象是否为null或undefined。如果是,就不再往下运算,直接返回undefined 非常好用

function main(config) { let dbHost = config?.db?.host console.log(dbHost); //127.0.0.1 } main({ db:{ host:'127.0.0.1', username:'locelhost' }, cache:{ host:'https://www.cnblogs.com/Lucky-daisy', username:'daisy' }, })

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。