Blogger Information
Blog 40
fans 0
comment 0
visits 27773
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
ES6 和异步网络请求
初见
Original
600 people have browsed it

ES6

  • let 和 const 命令
  1. // ES6 新增 let和const 命令,用来声明变量,用法类似于 var
  2. // let 声明的变量,只在 let 命令所在的代码块内有效
  3. // let 命令不存在变量提升
  4. // let 命令不允许在相同作用域内,重复声明同一个变量
  5. // const 命令声明的复合类型的数据(主要是对象和数组),变量指向的内存地址
  6. const NAME = 'Lmonkey';
  7. const obj = {name:'zhangsan', age:10, sex:'男'};
  8. obj.name = "Lmonkey";//const 定义的变量对象内属性的值可以改变
  9. console.log(obj.name);//Lmonkey
  10. // const [a,b] = [12,23];
  11. // [a,b]=[25,36];//const 定义后数组中值改变报错,无法修改
  12. let [a,b] = [12,23];
  13. [a,b]=[25,36];//
  14. console.log(a);//25
  1. <button>按钮1</button>
  2. <button>按钮2</button>
  3. <button>按钮3</button>
  4. <button>按钮4</button>
  5. <button>按钮5</button>
  6. <script>
  7. let btns =document.getElementsByTagName('button');
  8. for(let i=0;i<btns.length;i++){
  9. btns[i].addEventListener('click',function (){
  10. console.log(i)
  11. })
  12. }
  13. </script>

let

  • 箭头函数 Arrow Function
  1. function add(a,b){
  2. return a+b;
  3. }
  4. // function 相当于 => 放在参数和函数体中间
  5. // 1. 如果没有参数, 或有多个参数就需要使用 ()来定义参数列表
  6. const fun =()=> 'aaa';
  7. const add =(a,b)=>a+b;
  8. // 2. 如果有一个参数,可以不用()
  9. const fun =x =>x*x;
  10. console.log(fun(10));//100
  11. // 3. 如果函数体中只有一条语句, 可以不用{}, 就不用使用return 会自动加上
  12. const add =(a,b)=>a+b;
  13. //箭头函数在返回对象时, 必须在对象外面加上()
  14. const fun = () =>({id:18, name:'zhangsn'});
  15. //排序
  16. let arr=[1,9,8,6,3,20,80,60,40,2];
  17. arr.sort(function (a,b){
  18. return b-a; //倒序
  19. })
  20. console.log(arr);//[80, 60, 40, 20, 9, 8, 6, 3, 2, 1]
  21. arr.sort((a,b)=>a-b);//正序 一条语句
  22. console.log(arr);//[1, 2, 3, 6, 8, 9, 20, 40, 60, 80]
  23. // this 的问题
  24. function Person(){
  25. this.name='abc';
  26. this.age=30;
  27. this.say= function (){
  28. console.log(this.name+"####")
  29. }
  30. }
  31. const p =new Person();
  32. p.say();//abc####
  33. const pp={
  34. name:'aaa',
  35. say:()=>{
  36. console.log('2223');
  37. },
  38. run:function (){
  39. console.log(this.name)
  40. }
  41. };
  42. pp.say();//2223
  43. pp.run();//aaa
  44. const pp={
  45. name:'aaa',
  46. say:()=>{
  47. console.log(this);
  48. },
  49. run:function (){
  50. console.log(this)
  51. }
  52. };
  53. pp.say();//window{....}
  54. pp.run();//{name: 'aaa', say: ƒ, run: ƒ}
  55. // 普通函数的this 代表声明的对象,=>函数没 this ,它的this是继承来的,是它所在对象的上一曾的对象
  56. box.onclick=function (){
  57. setTimeout(()=>{
  58. this.className='bname';
  59. },1000)
  60. }
  61. //箭头函数没有自己的this,它的this是继承而来,默认指向在定义它时所处的对象(宿主对象)。
  • 数组的新增高级方法
  1. /*
  2. 有一个商品列表:
  3. 1. 将大于10元的商品打折, 取出大于10元的商品
  4. 2. 将10元以上的商品打5折
  5. 3. 打完折的商品总价是多少
  6. */
  7. //普通方法
  8. const goods =[5,10,20,60,3,90,80,4,5,78,65,68];
  9. const goods1=[];
  10. for(let i=0;i<goods.length;i++){
  11. if(goods[i]>=10)
  12. goods1.push(goods[i]);
  13. }//先找大于10元
  14. const goods2=[];
  15. for(n of goods1){//采用for of更简单
  16. goods2.push(n*0.5);
  17. }//再打折
  18. let sum=0;
  19. for(let i=0;i<goods2.length;i++){
  20. sum +=goods2[i];
  21. }//最后求和
  22. console.log(sum);//235.5
  23. // 采用数组的新增高级方法 filter map reduce
  24. let goods1 = goods.filter(function(n) {
  25. return n >= 10;
  26. })//采用filter 过滤器 过滤出大于10的
  27. let goods2 = goods1.map(function(n) {
  28. return n*0.5;
  29. })//map映射 打完折后放回新数组
  30. let sum = goods2.reduce(function(s, n){
  31. return s+n;
  32. }, 0);
  33. console.log(sum);//235.5
  34. /*
  35. 第一次,s 参数是 0 , n 是数组中的第一个元素
  36. 第二次,s 参数是 是第一次回调函数返回值 , n 是数组中的第二个元素
  37. 第三次,s 参数是 是第二次回调函数返回值 , n 是数组中的第三个元素
  38. 第四次,s 参数是 是上一次回调函数返回值 , n 是数组中的第二个元素
  39. */
  40. // 使用箭头函数简写(一条语句)
  41. console.log(goods.filter(n => n > 10).map(n => n * 0.5).reduce((s, n) => s + n));//230.5
  • 字符串新增功能
  1. // 字符串的新方法
  2. // startsWith 判断以什么字符串开头
  3. // endsWith 判断以什么字符串结尾
  4. let url= 'https://www.php.cn';
  5. if(url.startsWith("https")){
  6. console.log(url)
  7. }else{
  8. console.log("不是https开头的网站");
  9. }
  10. if(url.endsWith('cn')){
  11. console.log(url);
  12. }else{
  13. console.log('不是以cn结尾的url');
  14. }
  15. // 模板字符串
  16. // 模板字符串(template string)是增强版的字符串,用反引号(`)标识。它可以当作普通字符串使用,也可以用来定义多行字符串,或者在字符串中嵌入变量。
  17. let title='文章标题';
  18. let str='文章内容详情文章内容详情文章内容详情文章内容详情文章内容详情';
  19. let con =`
  20. <h1>${title}</h1>
  21. <b>${str}</b>
  22. `;
  23. console.log(con);
  • ES6 解构赋值和扩展运算符
  1. // 解构赋值
  2. // 左右两边结构必须一样
  3. // 右边必须有值
  4. // 声明和赋值不能分开
  5. let arr= ['one','two','three'];
  6. let a=arr[0];
  7. console.log(a);//one
  8. let [a,b,c]=['one','two','three'];
  9. console.log(a);//one
  10. const {name,age,sex,say}={name:'xiaoming',age:30,sex:'nan',say(){return 'aaaa'}};
  11. console.log(name);//xiaoming
  12. console.log(say());//aaaa
  13. const [a,b ,{x,y},d,e,f]=['a','b',{x:'xxx',y:'yyy'},'d','w','m'];
  14. // 扩展运算符
  15. // ...三点运算符
  16. // 展开数组
  17. let a=[1,2,3];
  18. let b=[...a,4,5,6,...a];
  19. console.log(b);//[1, 2, 3, 4, 5, 6, 1, 2, 3]
  20. // 默认参数
  21. function add(a,b,c,d,e){
  22. console.log(a);
  23. console.log(b);
  24. console.log(c);
  25. console.log(d);
  26. console.log(e);
  27. }
  28. add(...a,5,6);//赋值给每个参数
  29. function demo(...args){
  30. console.log(args);
  31. }
  32. demo(5,6,7,8,9);//[5, 6, 7, 8, 9]
  • 对象的新语法
  1. // ES 6 的 Class(类)概念
  2. // constructor 是构造方法
  3. // this关键字代表实例对象
  4. // 通过extends关键字实现继承
  5. // super关键字,表示父类的构造函数,用来新建父类的this对象
  6. class Person{
  7. constructor(name,age) {
  8. this.name=name;
  9. this.age=age;
  10. }
  11. say(){
  12. console.log(this.name);
  13. console.log(this.age);
  14. }
  15. }
  16. class Student extends Person{
  17. constructor(name,age,school) {
  18. super(name,age);
  19. this.school=school;
  20. }
  21. run(){
  22. console.log(this.school);
  23. }
  24. }
  25. const p= new Student('xiaoming',30,'php.cn');
  26. p.run();
  27. // JSON对象的新应用
  28. // JSON.stringify() 串行化
  29. // JSON.parse() 反串行化
  30. // 简写
  31. // (属性和值)名字一样可以简写
  32. // 方法一样可以简写(:function省)
  33. let name='xiaoming';
  34. let age=30;
  35. let say=function (){
  36. console.log('aaa');
  37. };
  38. const obj= {
  39. // name:name,键和值一样写一个
  40. name,
  41. age,
  42. say
  43. }
  44. obj.say();//aaa
  45. let str = JSON.stringify(obj);
  46. console.log(str);//{"name":"xiaoming","age":30}
  47. let o = JSON.parse(str);
  48. console.log(o.name);//xiaoming
  • Module 模块化编程
  1. // 模块化优点
  2. // 减少命名冲突
  3. // 避免引入时的层层依赖
  4. // 可以提升执行效率
  5. // export命令:用于规定模块的对外接口
  6. // 一个模块就是一个独立的文件。该文件内部的所有变量,外部无法获取。如果你希望外部能够读取模块内部的某个变量,就必须使用export关键字输出该变量。
  7. //import命令:用于输入其他模块提供的功能
  8. //import命令接受一对大括号,里面指定要从其他模块导入的变量名。大括号里面的变量名,必须与被导入模块(profile.js)对外接口的名称相同。
  9. let a=10;
  10. function add(a,b){
  11. return a+b;
  12. }
  13. console.log('这是 one.js 文件');
  14. let b=20;
  15. function add(a,b){
  16. return a+b;
  17. }
  18. console.log('这是 two.js 文件');
  19. console.log('这是 index.js 文件');
  20. console.log(add(10, 20));
  21. <script src="one.js" type="module"></script>
  22. <script src="two.js" type="module"></script>
  23. <script src="index.js" type="module"></script>
  24. //报错 Uncaught ReferenceError: add is not defined
  25. export let a=10;
  26. export function add(a,b){
  27. return a+b;
  28. }
  29. //一个一个导出export
  30. console.log('这是 one.js 文件');
  31. let b=20;
  32. function add(a,b){
  33. return a+b;
  34. }
  35. function demo(){
  36. }
  37. export {b ,add,demo};
  38. console.log('这是 two.js 文件');
  39. export let c=50;
  40. export class Person{
  41. }
  42. export default function (){
  43. console.log('123');
  44. }
  45. //一个js中只能有一个缺省导出
  46. import {a,add} from './one.js';//导入 import
  47. import {b, add as mul} from './two.js';
  48. import hello from './three.js';
  49. console.log('这是 index.js 文件');
  50. console.log(add(10, 20));//30
  51. hello();//123
  52. <script src="index.js" type="module"></script>
  53. 导出
  54. 可以一个个元素导出
  55. export let name = "李四";
  56. export function add(x, y) {
  57. return x * y;
  58. }
  59. 可以一起导出
  60. export {name, age, Person,add}
  61. 可以导出时给别名
  62. export {name as myname, age, Person,add}
  63. // 可以缺省导出 一个模块中只能有一个 export default
  64. export default function(args) {
  65. console.log(args);
  66. }
  67. 导入
  68. 使用解构赋值导入
  69. import {add, Person} from "./one.js"
  70. 如果多个模块有重名元素,可使用别名
  71. import {add as mul} from "./two.js"
  72. 导入default,可自命名
  73. import printx from "./two.js";
  74. 可以一起全部接受
  75. import * as one from "./one.js";
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post