zoukankan      html  css  js  c++  java
  • ES6 新特性

     
    概述 :主要的十个新特性 
    • Default Parameters(默认参数) in ES6
    • Template Literals (模板文本)in ES6
    • Multi-line Strings (多行字符串)in ES6
    • Destructuring Assignment (解构赋值)in ES6
    • Enhanced Object Literals (增强的对象文本)in ES6
    • Arrow Functions (箭头函数)in ES6
    • Promises in ES6
    • Block-Scoped Constructs Let and Const(块作用域构造Let and Const)
    • Classes(类) in ES6
    • Modules(模块) in ES6
     
     
    1.默认参数
     
    2.模板文本
    1. var name = `Your name is ${first} ${last}. `;  
    2. var url = `http://localhost:3000/api/messages/${id}`;  
     
    3.多行字符串
        
    1. var roadPoem = `Then took the other, as just as fair,  
    2.     And having perhaps the better claim  
    3.     Because it was grassy and wanted wear,  
    4.     Though as for that the passing there  
    5.     Had worn them really about the same,`;  
     
    4.解构赋值
    [javascript] view plain copy
     
    1. var { house, mouse} = $('body').data(); // we'll get house and mouse variables  
    2. var {jsonMiddleware} = require('body-parser');  
    3. var {username, password} = req.body;  
        这个同样也适用于数组,非常赞的用法:
    [javascript] view plain copy
     
    1. var [col1, col2]  = $('.column'),  
    2. [line1, line2, line3, , line5] = file.split('n');  
     
     
    5.增强对象文本 (略 ,有点晦涩)
     
    6.箭头函数 (非常nice的特性)
     
    以前我们使用闭包,this总是预期之外地产生改变,而箭头函数的迷人之处在于,现在你的this可以按照你的预期使用了,身处箭头函数里面,this还是原来的this。
      有了箭头函数在ES6中, 我们就不必用that = this或 self =  this  或 _this = this  或.bind(this)。例如,下面的代码用ES5就不是很优雅:
    1. var _this = this;  
    2. $('.btn').click(function(event){  
    3.   _this.sendData();  
    4. })  
         在ES6中就不需要用 _this = this:
    1. $('.btn').click((event) =>{  
    2.   this.sendData();  
    3. })  
     
     
  • 相关阅读:
    深入理解Linux系统调用:write/writev
    MySQL基础语法
    Ubuntu20.04安装MySQL8.0
    关系数据库(事务:一致性+隔离级别)
    基于mykernel 2.0编写一个操作系统内核
    信息安全 学习笔记(1)——常用攻击、网络命令、ARP安全、IP安全
    AI画风迁移——Style Change
    百度算法题回忆
    Java机试--输入输出
    【竞赛项目】阿里天池数据挖掘比赛——快来一起挖掘幸福感
  • 原文地址:https://www.cnblogs.com/lmxxlm-123/p/11131826.html
Copyright © 2011-2022 走看看