admin管理员组文章数量:1342509
I want to pull out attributes from a JavaScript object (below) but want to protect myself from either the object being null or undefined as well as the properties not existing. That is, I want the values to just be undefined and not have the JavaScript error.
const {id,username,userFirstName,userLastName} = attendeeResults;
I want to pull out attributes from a JavaScript object (below) but want to protect myself from either the object being null or undefined as well as the properties not existing. That is, I want the values to just be undefined and not have the JavaScript error.
const {id,username,userFirstName,userLastName} = attendeeResults;
Share
Improve this question
asked Feb 6, 2019 at 14:34
PetePete
3,4516 gold badges28 silver badges54 bronze badges
1
-
If the properties don't exist on the object,
undefined
is precisely what destructuring will give you, no need to precaution against errors. – Bergi Commented Feb 6, 2019 at 14:47
5 Answers
Reset to default 8You can use logical operators to achieve that:
const nullObject = null;
const { foo, bar } = nullObject || {};
console.log(foo, bar);
JavaScript allow you to define default value when destructuring an object. For example:
const {id: 0,username:'',userFirstName:'',userLastName:''} = attendeeResults;
But destruncturing throws an error if your attendeeResults
object is null or undefined.
This can be done this way:
const {id, username, ...rest} = {id: 10, username: 'u', firstname:'behzad',lastname:'besharati'};
console.log(id,username,rest);
building on the response by José Salgado. Ensure to use ??
Nullish Coalescing Operator since you are actually checking for null
const { foo, bar } = null ?? {};
console.log(foo, bar);
You could use the following, Please notice that i omitted username in the attendee
to show that it keeps the null value.
const attendeeResults = { id: 1, userFirstName: 'John', userLastName: 'Smith'}
const obj = {
id: null,
username: null,
userFirstName: null,
userLastName: null
};
Object.assign(obj, attendeeResults);
console.log(obj);
本文标签: How to safely destructure a JavaScript object in TypeScriptStack Overflow
版权声明:本文标题:How to safely destructure a JavaScript object in TypeScript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743702550a2524568.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论