本篇文章為大家介紹一下JavaScript中的可選 (?.)操作符。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有幫助。
如何使用null (null
和undefined
)檢查存取物件的巢狀屬性?假設我們必須從後台的接口存取用戶詳細資訊。
可以使用嵌套的三元運算子:
const userName = response ? (response.data ? (response.data.user ? response.data.user.name : null) : null) : null;
或使用if
進行空值檢查:
let userName = null; if(response && response.data && response.data.user){ userName = response.data.user.name; }
或更好的方法是使它成為一個單行連結的&&
條件,像這樣:
const userName = response && response.data && response.data.user && response.data.user.name;
上述程式碼的共同之處在於,連結有時會非常冗長,並且變得更難格式化和閱讀。這就是 ?.
運算子被提出來的原因,我們改下 ?.
重構上面的程式碼:
const userName = response?.data?.user?.name;
很 nice 呀。
?.
語法在ES2020 中被引入,用法如下:
obj.val?.pro // 如果`val`存在,则返回`obj.val.prop`,否则返回 `undefined`。 obj.func?.(args) // 如果 obj.func 存在,则返回 `obj.func?.(args)`,否则返回 `undefined`。 obj.arr?.[index] // 如果 obj.arr 存在,则返回 `obj.arr?.[index]`,否则返回 `undefined`。
?.
運算子假設我們有一個user
物件:
const user = { name: "前端小智", age: 21, homeaddress: { country: "中国" }, hobbies: [{name: "敲代码"}, {name: "洗碗"}], getFirstName: function(){ return this.name; } }
存取存在的屬性:
console.log(user.homeaddress.country); // 中国
存取不存在的屬性:
console.log(user.officeaddress.country); // throws error "Uncaught TypeError: Cannot read property 'country' of undefined"
改用?.
存取不存在的屬性:
console.log(user.officeaddress?.country); // undefined
存取存在的方法:
console.log(user.getFirstName());
存取不存在的方法:
console.log(user.getLastName()); // throws error "Uncaught TypeError: user.getLastName is not a function";
改用?.
存取不存在的方法:
console.log(user.getLastName?.()); // "undefined"
存取存在的陣列:
console.log(user.hobbies[0].name); // "敲代码"
存取不存在的方法:
console.log(user.hobbies[3].name); // throws error "Uncaught TypeError: Cannot read property 'name' of undefined"
改用?.
存取不存在的陣列:
console.log(user.dislikes?.[0]?.name); // "undefined"
<strong>??</strong>
運算子
我們知道?.
操作符號如果物件不存在,剛回傳undefined
,開發中可能不回傳undefined
而是傳回預設值,這時我們可以使用雙問題??
操作符。
有點抽象,直接來一個例子:
const country = user.officeaddress?.country; console.log(country); // undefined
需要回傳預設值:
const country = user.officeaddress?.country ?? "中国"; console.log(country); // 中国
英文原文網址:https://codingncoepts.com/javascript/ optional-chaining-opeator-javascript/
作者:Ashish Lahoti
更多程式相關知識,請造訪:程式設計入門! !
以上是聊聊JavaScript中的可選 (?.)操作符的詳細內容。更多資訊請關注PHP中文網其他相關文章!