可有bluebird的中文文档?
今天了解到有bluebird这个Promise库,但时没找到相关的api中文文档,请问可有相应的文档?
4 回复
这是我自己写的 bluebird的例子,里面有大部分api的例子,希望能帮到你 https://github.com/MedusaLeee/bluebird-demo
一楼很赞,话说现在不都上async了吗
@MedusaLeee 好的谢谢
@dengnan123 async对于流程控制的代码很简洁
var Promise = require(“bluebird”);
var login = Promise.coroutine(function* (username, password, session) { var user = yield Promise.delay(500).return({name:“xiaoming”, hash: “123456”}); var hash = yield Promise.delay(500).return(“123456”); if (user.hash !== hash) { throw new Error(‘Incorrect password’); } console.log(user); });
login()