如果你手贱,你还能找到一个叫 回调地狱 的网站
fs.readdir(source, function (err, files) {
if (err) {
console.log('Error finding files: ' + err)
} else {
files.forEach(function (filename, fileIndex) {
console.log(filename)
gm(source + filename).size(function (err, values) {
if (err) {
console.log('Error identifying file size: ' + err)
} else {
console.log(filename + ' : ' + values)
aspect = (values.width / values.height)
widths.forEach(function (width, widthIndex) {
height = Math.round(width / aspect)
console.log('resizing ' + filename + 'to ' + height + 'x' + height)
this.resize(width, height).write(dest + 'w' + width + '_' + filename, function(err) {
if (err) console.log('Error writing file: ' + err)
})
}.bind(this))
}
})
})
}
})
我一直觉得回调地狱
除了整个逻辑不太清晰以外,最大的问题是:我TM不知道是不是有地方少了一个大括号!!!
因为我不是考古派,我们也不讨论 Promise 的历史了。
Steam 是 NodeJS 的核心编程模型,James Halliday 写过一本指南 stream-handbook
然后 ES6 Generator 出现了,然后大家发现这玩意的特性能做异步流程控制 Generator 函数的含义与用法
Generator 这个异步写起来能么爽,干嘛不做个原生实现呢?于是 Async Function 就出现了
npm run 1
npm run 2
....