ES6的对象属性简写
Posted smile-fanyin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6的对象属性简写相关的知识,希望对你有一定的参考价值。
在ES6中允许我们在设置一个对象的属性的时候不指定属性名。
不使用ES6:
const name=‘Ming‘, age=‘18‘, city=‘Shanghai‘;
const student ={
name:name,
age:age,
city:city
};
console.log(student);
使用ES6:
const name=‘Ming‘, age=‘18‘, city=‘Shanghai‘;
const student ={
name,
age,
city
};
console.log(student);
对象中直接写变量,非常简洁。
Promise 是异步编程的一种解决方案,比传统的解决方案callback更加的优雅。它最早由社区提出和实现的,ES6 将其写进了语言标准,统一了用法,原生提供了Promise对象。
不使用ES6:
嵌套两个setTimeout回调函数:
setTimeout(function(){
console.log(‘Hello‘);
setTimeout(function(){
console.log(‘Hi‘);
},1000);
},1000);
使用ES6:
var waitSecond =new Promise(function(resolve, reject){
setTimeout(resolve, 1000);
});
waitSecond.then(function(){
console.log("Hello");
return waitSecond;
}).then(function(){
console.log("Hi");
});
以上是关于ES6的对象属性简写的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript 学习笔记: ES6 新特性——对象初始器中函数属性简写