Promise

Promise

文章 385 浏览 496

V8实现的Promise比Bluebird实现的Promise慢3倍左右,为什么Node.js到现在还没有考虑优化这里呢?

V8实现的Promise比Bluebird实现的Promise慢3倍左右,为什么Node.js到现在还没有考虑优化这里呢?from…

勿忘初心 2022-09-30 23:10:49 35 0

async/await只是then 的语法糖吗?有什么细微上的不同吗?为什么这两段代码输出不一致?

首先是async/await风格的promise我理解的流程:进入 async1(), 在其内部调用 async2()async2()内部没有异步代码,所以执行后会回到await处, 然后将下面…

〆凄凉。 2022-09-13 01:18:28 30 0

求解关于promise的一道面试题?

题目:实现一个retry函数,使得该defer函数可以在执行5次以后,输出成功与否const defer = num => new Promise(resolve => setTimeout(() => { consol…

初心未许 2022-09-13 01:16:53 46 0

promise.then 内部没有 resolve 直接 return 是怎么执行下一个 then 的函数的

直接上代码function Promise(fn) { this.cbs = []; const resolve = value => { this.data = value; this.cbs.forEach(cb => cb(value)); }; fn(resol…

北方的巷 2022-09-13 01:13:56 29 0

react-native promise 请求结果显示不出来

我不知道为什么这个一直显示不了…

朱染 2022-09-13 01:09:49 37 0

promise.then在event loop中的执行顺序?

有关JS事件循环,发现了以往认知外的情况:代码console.log("script start"); setTimeout(function () { console.log("setTimeout"); }, 0); Promise.…

﹏雨一样淡蓝的深情 2022-09-13 01:03:46 29 0

promise和async await捕获异常的区别

function f() { try { new Promise((resolve,reject)=> { reject('出错了'); }) } catch(e) { console.log(e) } } f()async function f() { try { awa…

贪了杯 2022-09-13 00:53:43 42 0

关于嵌套Promise的执行顺序,大佬帮帮忙

主要是嵌套Promise的问题this.pro(this.pro3()); this.pro11().then(res => this.pro22().then(res => {this.pro33()})) pro(fn) { this.pro1().then(…

你爱我像她 2022-09-13 00:49:04 45 0

实现promise.all 但是效果并不如期望那样

var makePromise = function(value, time) { return new Promise(function(resolve, reject){ setTimeout(function() { resolve(value); }, time) })…

℡Ms空城旧梦 2022-09-13 00:43:22 36 0

如何中断promise.all

发送文件 getFn(file) { const formdata=new FormData(); formdata.append('file',file); return this.$axios({ method: "post", url: "/upload", dat…

天煞孤星 2022-09-13 00:18:18 30 0

关于promise的小疑问?

function f1() { return new Promise((resolve,reject)=>{ resolve(new Promise((resolve1,reject1)=>{ resolve1(5) })) }) } f1().then((res)=>{ con…

安人多梦 2022-09-13 00:17:41 17 0

Koa2连接数据库时找不到query方法?

问题描述使用Koa2连接数据库时,使用Promise和async-await封装了query方法,但是发现找不到query方法了。相关代码//query.js const mysql = require("…

蓝色星空 2022-09-13 00:12:00 31 0

多个 promise 链式调用该如何判断执行顺序呢?

Promise.resolve() .then(() => { console.log(0) return Promise.resolve(4) }) .then((res) => { console.log(res) }) Promise.resolve() .then(() …

嘿哥们儿 2022-09-12 23:38:49 32 0

利用 promise 如何模拟实现限制最大并发请求的案例?

RT 求大佬一份 promise 实现的最大并发请求的 demo 最好能说明下应用场景,可以打印出直观的效果~…

挽手叙旧 2022-09-12 23:22:17 37 0

请实现这个App类

const app = new App(); app.use(next => setTimeout(() => next(), 500)); app.use(next => { console.log(123); next(); }); app.run(); // => 500m…

君勿笑 2022-09-12 23:20:09 28 0
更多

推荐作者

醉城メ夜风

文章 0 评论 0

远昼

文章 0 评论 0

平生欢

文章 0 评论 0

微凉

文章 0 评论 0

Honwey

文章 0 评论 0

qq_ikhFfg

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文