ES2015(又称ES6)部分

1 let/const以及块作用域;
2 循环语句

const arr=[1,2,3];
for(const item of arr){
console.log(item);
} const Zootopia=[
{name:'Nick',gender:1,species:'Fox'},
{name:'Judy',gender:0,species:'Bunny'}
];
for(const {name,species} of Zootopia){
console.log(`hi,I am ${name},and I am a ${species}`);
}

3 箭头函数

//1  simple
const fn=foo=>`${foo} world` //means return `foo +' world'` //2 arrow function as parameter
let array=['a','bc','def','ghij'];
array=array.filter(item=>item.length>=2); //bc,def,ghij //3 multi arguments
const fn=(foo,bar)=> {return foo+bar} //4 no argument
const greet=()=>'hello world'

4 字符串模板

const str="hello world"
const num=1
const bool=true
const obj={foo:'bar'}
const arr=[1,2,3] const str1=`String:${str}`
const str2=`Number:${num}`
const str3=`Boolean:${bool}`
const str4=`Object:${obj}`
const str5=`Array:${arr}` // 可多行
const sql=`
select * from Users
where FirstName='mike'
limit 5;
`

5 对象字面量省略语法

//Syntax:{method(){...}}
const obj={
//before
foo:function(){
return 'foo'
},
//after
bar(){
return 'bar'
}
}

6 解构

function getState(){
return {
error:null,
logined:true,
user:{},
}
} const {error,logined,user}=getState() const[foo,bar]=[1,2]
console.log(foo,bar) //=>1 2 //Object
const {foo,bar}={foo:1}
console.log(foo,bar) //=>1 undefined
//Array
const [a,b,c]=[1,2]
console.log(a,b,c) //=>1 2 undefined // 默认值
const {foo=1}={bar:1}
console.log(foo) //=>1 const [a,b=2]=[1]
console.log(a,b) //=>1 2 //嵌套解构
//Object in Object
const {a,b:{c}}={a:1,b:{c:2}}
console.log(a,c) //=>1 2 //Array in Object
const {d,e:[f]}={d:1,e:[2,3]}
console.log(d,f) //=>1 2 //Object in Array
consot [g,{h}]=[1,{h:2}]
console.log(g,h) //=>1 2 //Array in Array
const [i,[j]]=[1,[2,3]]
console.log(i,j) //=>1 2

7 函数默认参数

function fn(arg='foo'){
console.log(arg)
}
fn() //=>foo
fn('bar') //=>bar

8 数组展开

//Syntax:fn(...[arg1,arg2])
function sum(...numbers){
return numbers.reduce((a,b)=>a+b)
}
sum(...[1,2,3]) //=>6

9 Set和Map数据结构

const set=new Set([1,2,3,4])
set.forEach(item=>{
console.log(item)
})
//=>1 2 3 4 set.forEach(item=>{
console.log(item*this.foo)
},{foo:2})
//=>2 4 6 8 const map = new Map([['foo', 1 ], [ 'foo', 2 ]])
console.log(map.get('foo')) //=> 2

10 类定义语法, 可带构造函数

class Animal {
constructor(family, specie, hue) {
this.family =family
this.specie = specie
this.hue = hue yell() {
console.log(this.hue)
}
}

11 Promise

new Promise((resolve,reject)=>{
api.call('fetch-data',(err,data)=>{
if(err) return reject(err)
resolve(data)
})
})

12 模块化导入

import name form 'module-name'
import * as name from 'module-name'
import {member} from 'module-name'
import {meber as alias} from 'module-name' import * as lib from 'module'
lib.method1()
lib.method2() // 同时引入default和其他模块
import {default ,utils} from 'module' //Wrong // 不引入接口,仅运行模块代码
import 'system-apply'

13 模块导出

//module.js
export const apiRoot='http://example.com/api'
export function method(){
//...
}
export class foo{
//...
} //app.js
import {method,foo} from 'module.js'
//-----------------------------------------------
// 导出和导入默认模块
//client.js
export default class Client{
//...
}
//app.js
import Client from 'client.js' //-----------------------------------------------
// 暴露别的模块的所有接口
export * from 'module-1'

13 使用fetch代替ajax

Fetch与Ajax对比:
1 fetch采用Promise的异步方式;API更简洁,可部分消除回调地狱;
2 默认情况下Fetch不会reject错误的HTTP状态, 例如404;需手动包装;
3 Fetch默认情况下不带cookie;如需cookie,需自行开启credencials选项;

fetch('https://www.guanggao365.com/advertisement/searchAd', {
method: 'post',
mode: 'cors',//跨域
credentials: 'same-origin',//默认不带cookie,如需cookie,则要开启此配置
headers: {'someHeader': 'someValue'},
body: JSON.stringify('thebodyContentJson')// 也可是k1=v1&k2=v2
}).then(res =>{
res.json().then(obj => {
console.log(obj)
})
})

ES2015常用知识点的更多相关文章

  1. ES6/ES2015常用知识点和概念

    越来越多的开源库开始使用ES2015来构建代码了,大家知道ES6=ES2015,ES6在2015年被ECMAScript标准化组织approve,各大浏览器厂商要完全支持ES6的强大功能还须一些时日, ...

  2. DB2_SQL_常用知识点&实践

    DB2_SQL_常用知识点&实践 一.删除表中的数据(delete或truncate) 1 truncate table T_USER immediate; 说明:Truncate是一个能够快 ...

  3. JAVA常用知识点及面试题总结

    1. String.StringBuffer.StringBuilder三者区别? (1)三者在执行速率上的比较: String<StringBuffer<StringBuilder 原因 ...

  4. HTML常用知识点代码演示

    1 HTML部分常用知识点 <!-- 版本声明 --> <!DOCTYPE html> <!-- 唯一根元素 --> <html> <!-- 对网 ...

  5. Java 常用知识点

    Java 常用知识点 1.日期格式化 SimpleDateFormat Date date=new Date(System.currentTimeMillis()) ; SimpleDateForma ...

  6. Less常用知识点

    上篇文章介绍了如何安装Less,我们将所有东西都写在.less里面,最后通过命令将.less转换成.css文件,就可以放入到项目里用了.今天了解一些less常用知识点. 1.变量:声明两个变量,一个是 ...

  7. BIOS备忘录之EC常用知识点

    BIOS工程师眼中常用的EC知识点汇总: EC的硬件架构 EC硬件结构上主要分为两部分:Host Domain和EC Domain Host Domain就是通过LPC与CPU通信的部分(LPC部分需 ...

  8. YII2常用知识点总结

    YII2常用知识点总结 (一)总结性语句 (1)经常看看yii源码比如vendor\yiisoft\yii2\web这个目录(很重要)下的文件中的方法(这些文件中的公共方法,大致看了下基本上都可以通过 ...

  9. CSS3常用知识点

    CSS3常用知识点 1 css3选择器 1.1 属性选择器 /* E[attr~=val] 表示的一个单独的属性值 这个属性值是以空格分隔的*/ .attr2 a[class~="kawa& ...

  10. javaScript常用知识点有哪些

    javaScript常用知识点有哪些 一.总结 一句话总结:int = ~~myVar, // to integer | 是二进制或, x|0 永远等于x:^为异或,同0异1,所以 x^0 还是永远等 ...

随机推荐

  1. linux mint 常用软件安装

    deepin版 qq 微信 迅雷安装 https://github.com/wszqkzqk/deepin-wine-ubuntu inkscape sudo add-apt-repository p ...

  2. 修改mysql多个表的相同字段为同一值内容

    mysql将所有数据库的表的相同字段更新为某一值 1.创建存储过程函数名为:proc_update_client_id CREATE PROCEDURE `proc_update_client_id` ...

  3. 看K线学炒股(0803)

    高位板块的高位个股要回避,即便走反抽行情也要慎重.像容捷股份. 同是房地产行业的荣盛发展和西藏城投,差别怎么这么大?荣盛发展市净率0.4,西藏城投是4.8,市盈率更是一个天上一个地下,但股价呢?所以股 ...

  4. wmi和wmic

    https://baike.baidu.com/item/Windows%20Management%20Instrumentation/572501?fromtitle=WMI&fromid= ...

  5. 【C++复习】第八章 多态性(1)(多态类型、运算符重载)

    1.多态性 1.1 什么是多态? 多态是指相同消息被不同对象接收后导致不同的行为,所谓消息是指对类成员函数的调用,不同的行为是指不同的实现,也就是调用了不同的函数. 消息在C++编程中指的是对类的成员 ...

  6. 对象转Map

    Map<String, Object> userMap = BeanUtil.beanToMap(userDTO);

  7. 【剑指Offer】【栈】包含min函数的栈

    题目:定义栈的数据结构,请在该类型中实现一个能够得到栈中所含最小元素的min函数(时间复杂度应为O(1)). A:因为包含了入栈和出栈的操作,存储最小数的变量不能单单只是一个int的变量,应该用一个辅 ...

  8. Nginx安装以及部署Django项目

    Nginx官网:http://nginx.org/ Nginx中文文档:https://www.nginx.cn/doc/index.html Tengine(淘宝Nginx):http://teng ...

  9. get与post区别,https协议的通信机制

    get与post区别 幂等的的意思就是一个操作不会修改状态信息,并且每次操作的时候都返回同样的结果.即:做多次提交和做一次的对服务器效果是一样 的. 方法 用法 是否能修改服务器数据 幂等 安全 入参 ...

  10. mongoengine模型字段非严格校验FieldDoesNotExist

    背景 最近需要从mongoDB中查询数据用于数据分析,一开始就用了pymongo后来发现使用起来很不方便,后面了解到有类似SQLAlchemy的ORM模块mongoengine能够操mongo 简单看 ...