- 偶然在网上看到很多的ES6的小知识。于是总结总结留着备用,顺便跟大家分享一下。
展开操作符
用于对象或数组之前的展开操作符(…),将一个结构展开为列表。
let firstHalf = [ 'one', 'two'];
let secondHalf = ['three', 'four', ...firstHalf];
如果我们不使用展开操作符的话,就需要循环遍历结合数组的push操作才可以进行数组的组合。或者使用concat方法
var arr = new Array(3)
arr[0] = "George"
arr[1] = "John"
arr[2] = "Thomas"
var arr2 = new Array(3)
arr2[0] = "James"
arr2[1] = "Adrew"
arr2[2] = "Martin"
document.write(arr.concat(arr2))
//George,John,Thomas,James,Adrew,Martin
let firstHalf = [ 'one', 'two'];
let secondHalf = ['three', 'four'];
for(var i=0, i <firstHalf.length; i++ ) {
secondHalf.push(firstHalf[i]);
}
展开操作符也可以用于合并对象的属性:
const hero = {
name: 'Xena - Warrior Princess',
realName: 'Lucy Lawless'
}
const heroWithSword = {
...hero,
weapon: 'sword'
}
不用展开操作符的话,需要遍历对象的属性:
let keys = Object.keys(hero);
let obj = {};
for(var i=0; i< keys.length; i++) {
obj[keys[i]] = keys[props[i]];
}
剩余参数
剩余参数将剩余的参数收入数列。JavaScript 的特性。通常会有一个 arguments 变量收集参数。
function add(first, second, ...remaining) {
return first + second;
}
上面的一段代码仅仅将 first 和 second 加起来,也就是说,调用 add(1, 2) 和 add(1, 2, 3, 4) 会得到相同的结果。
下面我们修正一下:
function add(first, second, ...remaining) {
return first + second + remaining.reduce((acc, curr) => acc + curr, 0);
}
如前所述,…remaining 收集了剩余的参数,为我们提供了这些参数的命名,清楚地表明我们打算处理剩余的参数。我记得至迟 ES5 已经有 arguments 了,不过少有人知。
字符串插值
class Product {
constructor(name, description, price) {
this.name = name;
this.description = description;
this.price = price;
}
getDescription() {
return " Full description \n" +
" name: " + this.name +
" description: " + this.description
}
}
getDescription() 方法中那个可读性不佳的多行长语句。
getDescription() {
return `Full description \n:
name: ${this.name}
description ${this.description}
`;
}
通过使用``模板字符串,在模板字符串内使用${}来将变量放进来。
所有模板字符串的空格和换行,都是被保留的.
console.log(`输出值为 N,
换行`)
// "输出值为 N
换行"
// 模板字符串之中还能调用函数。
function fn() {
return "Hello World";
}
console.log(`输出值为:${fn()}`) // "输出值为:Hello World"
简写属性
在 ES5 中
function createCoord(x, y) {
return {
x: x,
y: y
}
}
ES6 以后
function createCoord(x, y) {
return {
x,
y
}
}
方法属性
方法属性是在对象中定义指向方法的属性。
ES5 代码
const math = {
add: function(a,b) { return a + b; },
sub: function(a,b) { return a - b; },
multiply: function(a,b) { return a * b; }
}
ES6 以后只需这么写:
const math = {
add(a,b) { return a + b; },
sub(a,b) { return a - b; },
multiply(a,b) { return a * b; }
}
解构赋值
function handle(req, res) {
const name = req.body.name;
const description = req.body.description;
const url = req.url;
log('url endpoint', url);
// 大量代码逻辑
dbService.createPerson(name, description)
}
不管从什么角度来看,上面的代码都不完美,但它确实体现了一种应用场景。
function handle(req, res) {
const { body: { name, description }, url } = req;
log('url endpoint', url);
// 大量代码逻辑
dbService.createPerson(name, description)
上面的代码将三行压缩成了一行。同样解构赋值并不仅仅局限于对象。它同样适用于数组。
const array = [1,2,3,4,5,6];
const a = array[0];
const c = array[2];
//使用更加优雅的方式书写出来
const array = [1,2,3,4,5,6];
const [a, ,c, ...remaining] = arr;
// remaining = [4,5,6]
// 小例子
let { a, b } = { a: "aaa", b: "bbb" };
a // "aaa"
b // "bbb"
//字符串也可以解构赋值。这是因为此时,字符串被转换成了一个类似数组的对象。
const [a, b, c, d, e] = 'hello';
a // "h"
b // "e"
c // "l"
d // "l"
e // "o"
//交换变量的值
let x = 1;
let y = 2;
[x, y] = [y, x];
//从函数返回多个值
// 返回一个数组
function example() {
let [a, b, c] = [1, 2, 3]
return [a, b, c]
}
let [a, b, c] = example();
// 返回一个对象
function example() {
return {
foo: 1,
bar: 2
};
}
let { foo, bar } = example();
我们可以使用上面的模式匹配分解数组的值。我们使用 , , 跳过某些值。上面提到过的剩余参数这里也能用,在这里我们通过剩余参数捕获了剩余的数组成员。
解构赋值还可以用于函数和参数。函数有不止 2-3 个参数时,使用一个对象收集所有参数是 JavaScript 的事实标准。
//例如:
function doSomething(config) {
if(config.a) { ... }
if(config.b) { ... }
if(config.c) { ... }
}
//更好的写法:
function doSomething({ a, b, c }) {
if(a) { ... }
if(b) { ... }
if(c) { ... }
}
//函数参数的默认值
function funA (a = 1, b = 2){
return a + b;
}
funA(3) // 5 因为 a 是 3, b 是 2
funA(3,3) // 6 因为 a 是 3, b 是 3
//在 utils.js 中:
export const function A (){
console.log('A')
}
export const function B (){
console.log('B')
}
export const function C (){
console.log('C')
}
//在组件中引用
在 组件中引用时:
import { A, B, C } from "./utils.js"
//调用
A() // 输出 A
部分转载Vue中文社区公众号