promesify:用承诺替换丑陋回调的有用模式

时间:2024-07-30 10:12:41
【文件属性】:

文件名称:promesify:用承诺替换丑陋回调的有用模式

文件大小:6KB

文件格式:ZIP

更新时间:2024-07-30 10:12:41

JavaScript

宣誓 假设您有一些基于异步回调的 API,您想使用它但又喜欢 Promise。 这是promesify变得方便的地方。 所以假设你有一些 API 对象 myApi = new SuperDuperApi ( ) ; 现在而不是这样做: myApi . method1 ( function ( err ) { if ( err ) return ; myApi . method2 ( function ( err ) { if ( err ) return ; myApi . method3 ( function ( err ) { // and so on ... } ) ; } ) ; } ) ; 感谢promesify你可以变得更聪明一点: var Promesify = promesify ( { methods :


【文件预览】:
promesify-master
----stubs.js(1KB)
----LICENSE.txt(1KB)
----test.js(827B)
----promesify.js(3KB)
----.travis.yml(91B)
----README.md(873B)
----tests()
--------benchmark.js(2KB)
----.gitignore(13B)
----package.json(725B)

网友评论