2020年2月8日

ES6中的class 与prototype

摘要: 一、定义构造函数 在以前的js中,生成一个对象实例,需要先定义构造函数,然后通过prototype 的方式来添加方法,在生成实例: function Person(){ this.name = "测试"; this.age = 26; } Person.prototype.getName = fun 阅读全文

posted @ 2020-02-08 23:07 漫思 阅读(817) 评论(0) 推荐(0) 编辑

使用Error和try catch

摘要: <script> function p1() { return new Promise(function (resolve, reject) { reject(new Error("网络错误")) }) } async function Getdata() { try { var t1 = awai 阅读全文

posted @ 2020-02-08 22:29 漫思 阅读(581) 评论(0) 推荐(0) 编辑

JavaScript (new)创建一个对象的过程

摘要: 在JavaScript的世界中,对象Object的操作是比较灵活的,可以通过创建一个对象,来进行继承,拓展,而且对象的属性是极其容易拓展的。 所以创建一个对象实例流程可以是这样子的: function Person(name , age){ this.name = name; this.age = 阅读全文

posted @ 2020-02-08 21:38 漫思 阅读(2471) 评论(0) 推荐(0) 编辑

我所理解的promise的then方法

摘要: var p1= new Promise(function (resolve, reject) { resolve({ data: [1, 2, 3, 4], resposneCode: "00001", resposneRemark: "成功" }) reject({ resposneCode: " 阅读全文

posted @ 2020-02-08 21:35 漫思 阅读(371) 评论(0) 推荐(0) 编辑

promise与async和await的区别

摘要: 什么是Async/Await? async/await是写异步代码的新方式,以前的方法有回调函数和Promise。 async/await是基于Promise实现的,它不能用于普通的回调函数。 async/await与Promise一样,是非阻塞的。 async/await使得异步代码看起来像同步代 阅读全文

posted @ 2020-02-08 21:12 漫思 阅读(33233) 评论(0) 推荐(1) 编辑

JS Promise实例 then()方法

摘要: JS Promise实例 then()方法 内容已更新,可百度搜索: EC前端 Promise.then() 描述: then()方法用于指定当前实例状态发生改变时的回调函数。它返回一个新的Promise实例。 语法: Promise.prototype.then(onFulfilled, onRe 阅读全文

posted @ 2020-02-08 21:05 漫思 阅读(2325) 评论(0) 推荐(0) 编辑

电脑上不去网

摘要: 在端口9859启动监听服务失败 阅读全文

posted @ 2020-02-08 10:10 漫思 阅读(184) 评论(0) 推荐(0) 编辑

导航