This article brings you relevant knowledge about object destructuring usage analysis in JavaScript. I hope it will be helpful to you.
The release of ES6 (ES2015) provides JavaScript with a more convenient and faster way to handle object properties. This mechanism is called Destructuring (also known as destructuring assignment). But will you really use it? Do you really understand the usage of destructuring assignment in various scenarios?
Use destructuring to obtain values from objects
The most basic use of object destructuring is to retrieve the value of a property key from an object.
For example, we define an object with two properties: name and age
const User = { name: '搞前端的半夏', age: 18 }
Traditionally, we will use dot (.) notation or subscript ([]) notation Method to retrieve a value from an object. The following code snippet shows an example of retrieving a value from an object using dot notation to retrieve the object's value id and name. employee
Before we wanted to get the value of a certain attribute in the object, we usually used . or [].
const name = User['name']; const age = User.age;
Of course these two methods are no problem in the current situation, but when there are too many User attributes, we have to copy and paste constantly, resulting in a lot of repeated code.
With structure assignment, we can quickly get the value. For example we create a variable using the key name of the object and assign the value of the object to the same key. In this way, no matter how many attributes there are, we only need to assign the attribute name, which also reduces a lot of repeated code.
const { name, age } = User;
Use destructuring to get values from nested objects
In the above example, User is just a simple single-layer object, we will also encounter nested objects in daily development Object, then using structure assignment, how can we retrieve the value in the nested object. Next we redefine the User object and add a contact attribute to this object, which contains the User's phone. .
const User = { name: '搞前端的半夏', age: '18', contact:{ phone:'110', } }
If we use . to go back and forth with the value of phone, it will take two times.
const phone = User.contact.phone;
If we use destructuring assignment: the writing is as follows:
const {contact:{phone}}=User consosle.log(phone) // 输出10.
Whether it is No matter how many levels of nesting there are, as long as you follow this writing method, you will definitely get the specific value.
Use object destructuring to define a new variable and default value
Default value
Of course we may encounter many extreme situations in the daily development process,
For example, the object passed from the backend may be missing some fields
const User = { name: '搞前端的半夏', }
or the attribute has no specific value:
const User = { name: '搞前端的半夏', age: '' }
When we use destructuring assignment: regardless of whether age exists If there are attributes, the age variable will be created.
const { name, age } = employee;
When User.age has no specific value, we can use
const { name, age=18 } = employee;
to give age a default value.
New variable
Hold on, wait. There’s more magic on display in the deconstruction section! How to create a completely new variable and assign a value calculated using the object's property value? Sound complicated? This is an example.
What should we do when we want to output the combined value of the User attribute?
const { name,age,detail = `${name} 今年 ${age} `} = User ; console.log(detail); // 输出:搞前端的半夏 今年 18
Using JavaScript object destructuring aliases
In JavaScript object destructuring, you can name the destructuring variable alias. Very handy for reducing the chance of variable name conflicts.
const User = { name: '搞前端的半夏', age: '' }
Suppose we want to use destructuring assignment to obtain the value of the age attribute, but the variable age is already in the code. At this time, we need to define an alias in the structure.
const { age: userAge } = User; console.log(userAge); //搞前端的半夏
And if you use age, an error will be reported.
console.log(age);
Using object destructuring to handle dynamic name properties
We often handle API response data as JavaScript objects. These objects may contain dynamic data, so as a client we may not even know the property key names in advance.
const User = { name: '搞前端的半夏', age: '' }
When we pass the key as a parameter, we can write a function that returns the property value of the User object. Here we use [] to accept parameters, and js will retrieve it from the object based on this key pair!
function getPropertyValue(key) { const { [key]: returnValue } = User; return returnValue; }
const contact = getPropertyValue('contact'); const name = getPropertyValue('name'); console.log(contact, name); // 空 搞前端的半夏
Destructuring objects in function parameters and return values
Destructuring assignment parameters and passing parameters
Use object destructuring to pass attribute values as parameters to functions.
const User = { name: '搞前端的半夏', age: 18 }
name Now let's create a simple function that creates a message dept using the and attribute values to log in to the browser console.
function consoleLogUser({name, age}) { console.log(`${name} 今年 ${age}`); }
Pass values directly as function parameters and use them internally.
consoleLogUser(User); // 搞前端的半夏 今年 18
Destructuring function object return value
There is another usage of object destructuring function. If the function returns an object, you can destructure the value directly into a variable. Let's create a function that returns an object.
function getUser() { return { 'name': '搞前端的半夏', 'age': 18 } }
const { age } = getUser(); console.log(age); // 18
Using Object Destructuring in Loops
The last (but not least) usage we will discuss is loop destructuring. Let us consider a set of employee objects. We want to iterate through the array and want to use the property values of each employee object.
const User= [ { 'name': '爱分享的半夏', 'age': 16 }, { 'name': '搞前端的半夏', 'age': 18 }, { 'name': '敲代码的半夏', 'age': 20 } ];
You can use a for-of loop to iterate over the User object, and then use object destructuring assignment syntax to retrieve details.
for(let {name, age} of employees) { console.log(`${name} 今年${age}岁!!!`); }
Related recommendations: javascript learning tutorial
The above is the detailed content of JavaScript object destructuring usage analysis (detailed examples). For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
