In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-29 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
这篇文章主要为大家展示了"JavaScript解构赋值的常见场景有哪些",内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下"JavaScript解构赋值的常见场景有哪些"这篇文章吧。
1. 提取数据
先来看看如何在 JavaScript 中解构对象,可以从这个商品对象的简单示例开始。
const product = { id: 1, title: "Nike Air Zoom Pegasus 38", product_image: "/resources/products/01.jpeg", shown: "White/Pure Platinum/Midnight Navy/Wolf Grey", price: 120,};const { id, price, title } = product;
这样,就可以通过以下方式访问相应的属性:
console.log(id); // 1console.log(price); // 120console.log(title); // Nike Air Zoom Pegasus 38
解构,能够让代码更加清晰简洁。如果需要解构一个更复杂的对象呢?即对象中的对象。
现在假设需要从商品列表数据中获取其中一个商品的属性,如下:
const products = [ { id: 1, title: "Nike Air Zoom Pegasus 38", price: 120, }, { id: 2, title: "Nike Air Zoom Alphafly NEXT%", price: 275, }, { id: 3, title: "Nike Zoom Fly 4", price: 89.0, },];
在这里,产品列表嵌套了几层,需要访问商品的信息,可以解构尽可能多的级别以获取商品对象的属性。
const [tmp, { id, title, price }] = products;console.log(id); // 2console.log(title); // Nike Air Zoom Alphafly NEXT%console.log(price); // 275
上面的代码仅用于展示其用法,项目开发中不建议再数组中这样获取对象信息。
通常,数据列表不一定非要数组,从获取效率来说,map 对象的访问比数组效率要高。可以将上面的数据改为 map 对象,如下:
const products = { 1: { title: "Nike Air Zoom Pegasus 38", price: 120, }, 2: { title: "Nike Air Zoom Alphafly NEXT%", price: 275, }, 3: { title: "Nike Zoom Fly 4", price: 89.0, },};const { 2: { id, title, price },} = products;console.log(id); // 2console.log(title); // Nike Air Zoom Alphafly NEXT%console.log(price); // 275
在 JavaScript 中,数据可以是变量和方法,因此解构赋值也适合用在函数参数的定义,如下:
const printArticle = ({ title, remark }) => { console.log(title); console.log(remark);};printArticle({ title: "JavaScript 解构赋值", remark: "解构赋值的实用场景介绍",});
在使用 React 或 Vue 等框架时,有很多解构赋值的地方,如方法的引入等等。
2. 别名取值
如果想创建与属性名称不同的变量,那么可以使用对象解构的别名功能。
const { identifier: aliasIdentifier } = expression;
identifier 是要访问的属性的名称,aliasIdentifier 是变量名称。具体用法如下:
const products = { 1: { title: "Nike Air Zoom Pegasus 38", price: 120, }, 2: { title: "Nike Air Zoom Alphafly NEXT%", price: 275, }, 3: { title: "Nike Zoom Fly 4", price: 89.0, },};const { 2: { price: productPrice },} = products;console.log(productPrice); // 2753. 动态属性
可以使用动态名称提取到变量属性(属性名称在运行时已知):
const { [propName]: identifier } = expression;
propName 表达式应计算为属性名称(通常是字符串),标识符应指示解构后创建的变量名称,用法如下:
const products = { 1: { title: "Nike Air Zoom Pegasus 38", price: 120, }, 2: { title: "Nike Air Zoom Alphafly NEXT%", price: 275, }, 3: { title: "Nike Zoom Fly 4", price: 89.0, },};const productKey = "1";const { [productKey]: product } = products;console.log(product); // { title: 'Nike Air Zoom Pegasus 38', price: 120 }
上面代码中,可以通过更新 productKey 的值进而使得 product 的值也跟随变化。
4. 对象解构中的 Rest
将 rest 语法添加到解构中,Rest 属性收集那些尚未被解构模式拾取的剩余可枚举属性键。
const { identifier, ...rest } = expression;
解构后,变量标识符包含属性值。 rest 变量是一个具有其余属性的普通对象。
const product = { title: "Nike Air Zoom Pegasus 38", price: 120, quantity: 5, category_id: 1, reviews: 9830, total: 45,};const { title, ...others } = product;console.log(others); // { price: 120, quantity: 5, category_id: 1, reviews: 9830, total: 45 }
对于数组,可以通过 Rest 的实现首尾值的获取:
const numbers = [1, 2, 3];const [head, ...tail] = numbers;console.log(head); // 1console.log(tail); // [ 2, 3 ]5. 默认值
正如前面介绍的那样可以在解构数组时为其分配默认值:
const RGBA = [255, 34];const [R, G, B = 0, A = 1] = RGBA;console.log(R); // 255console.log(G); // 34console.log(B); // 0console.log(A); // 1
这样,可以将确保在 B、A 未定义的情况下有一个默认值。
以上是"JavaScript解构赋值的常见场景有哪些"这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注行业资讯频道!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.