首页 > 作文

深入解析ES6之数据解构的用法

更新时间:2023-04-03 13:22:39 阅读: 评论:0

本文介绍了深入理解es6之数据解构的用法,写的十分的全面细致,具有一定的参考价值,对此有需要的朋友可以参考学习下。如有不足之处,欢迎批评指正。

一 对象解构

对象解构语法在赋值语句的左侧使用了对象字面量

let node = {  type: true,  name: fal} //既声明又赋值let {  type,  name} = node; //或者先声明再赋值let type, name({type,name} = node);console.log(type);//trueconsole.log(name);//fal

type与name标识符既声明了本地变量,也读取了对象的相应属性值。
解构赋值表达式的值为表达式右侧的值。当解构表达式的右侧的计算结果为null或者undefined时,会抛出错误。

默认值

当你使用解构赋值语句时,如果所指定我的童年生活的本地变量在对象中没有找到同名属性,那么该变量会被赋值为undefined

let node = {  type: true,  name: fal},  type, name, value;({type,value,name} = node); console.log(type);//trueconsole.log(name);//falconsole.log(value);//undefined

你可以选择性地定义一个默认值,以便在指定属性不存在时使用该值。

let node = {    type: true,    name: fal  },  type, name, value;({  type,  value = true,  name} = node); console.log(type);//trueconsole.l公司融资计划og(name);//falconsole.log(value);//true

赋值给不同的本地变量名

let node = {  type: true,  name: fal,  value: "dd"}let {  type: localtype,  name: localname,  value: localvalue = "cc"} = node;console.log(localtype);console.log(localname);console.log(localvalue);

type:localtype这种语法表示要读取名为type的属性,并把它的值存储在变量localtype上。该语法与传统对象字面量的语法相反

嵌套的对象结构

let node = {type: "identifier",name: "foo",loc: {  start: {    line: 1,    column: 1  },  end: {    line: 1,    column: 4  }}} let {loc: locall,loc: {  start: locals,  end: locale}} = node; console.log(locall);// start: {line: 1,col四级作文范文umn: 1},end: {line: 1,column: 4}console.log(locals);//{line: 1,column: 1}console.log(locale);//{line: 1,column: 4}

当冒号右侧存在花括号时,表示目标被嵌套在对象的更深一层中(loc: {start: locals,end: locale})

二 数据解构

数组解构的语法看起来跟对象解构非常相似,只是将对象字面量换成了数组字面量。

let colors = ["red", "blue", "green"];let [firstc, condc, thirdc, thursc = "yellow"] = colors;console.log(firstc//redconsole.log(condc);//blueconsole.log(thirdc);//greenconsole.log(thursc);//yellow

你也可以在解构模式中忽略一些项,并只给感兴趣的项提供变量名。

let colors = ["red","green","blue"]; let [,,thirdc] = colors;console.log(thirdc);//blue//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860

thirdc之前的逗号是为数组前面的项提供的占位符。使用这种方法,你就可以轻易从数组任意位置取出值,而无需给其他项提供名称。

解构赋值

let colors = ["red","green","blue"],  firstcolor = "black",  condcolor = "purple";[firstcolor,condcolor] = colors;console.log(firstcolor);//redconsole.log(condcolor);//green//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860

数组解构有一个非常独特的用例,能轻易的互换两个变量的值

let a =1,b =2;[a,b] = [b,a];console.log(a);//2console.log(b);//1//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860

嵌套的解构

let colors = ["red", ["green", "blue"], "yellow"];let [firstc, [, ssc]] = colors;console.log(ssc);//blue

剩余项

let colors = ["red", "green", "blue"];let [firstc, ...restc] = colors;console.log(firstc);饮茶时间console.log(...restc);console.log(restc[0]);//greenconsole.log(restc[1]);//blue

使用剩余项可以进行数组克隆

let colors = ["red", "green", "blue"];let [...restc] = colors;console.log(restc);//["red", "green","blue"]

三 混合解构

let node = {type: "identifier",name: 'foo',loc: {  start: {    line: 1,    column: 1  },  end: {    line: 1,    column: 4  }//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860},range: [0, 3]} let {type,name: localname,loc: {  start: {    line: ll  },  end: {    column: col  }},range: [, cond]} = node; console.log(type);//identifierconsole.log(localname);//fooconsole.log(ll);//1console.log(col);//4console.log(cond);//3//欢迎加入前端全栈开发交流圈一起吹水聊天学习交流:864305860

结语

感谢最有效的英语学习方法您的观看,如有不足之处,欢迎批评指正。

本文发布于:2023-04-03 13:22:38,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/8d8c95ab66da32a443ed22e2874b77bf.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:深入解析ES6之数据解构的用法.doc

本文 PDF 下载地址:深入解析ES6之数据解构的用法.pdf

标签:赋值   对象   数组   欢迎加入
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图