只是一个简单的问题来澄清gulp任务中参数"done"
的作用是什么?
据我所知,这是任务函数中的回调,如下所示。
gulp.task('clean', function(done) {
// so some stuff
creategulptask(cleantask(), done);
});
但是通过它的原因是什么?
答案 0 :(得分:22)
gulp文档指定了类似于以下内容的内容:
var gulp = require('gulp');
// Takes in a callback so the engine knows when it'll be done
// This callback is passed in by Gulp - they are not arguments / parameters
// for your task.
gulp.task('one', function(cb) {
// Do stuff -- async or otherwise
// If err is not null and not undefined, then this task will stop,
// and note that it failed
cb(err);
});
// Identifies a dependent task must be complete before this one begins
gulp.task('two', ['one'], function() {
// Task 'one' is done now, this will now run...
});
gulp.task('default', ['one', 'two']);
将done参数传递给用于定义任务的回调函数。
您的任务函数可以“接受回调”函数参数(通常此函数参数名为done
)。执行done
函数告诉Gulp“在任务完成时提示告诉它”。
如果您想订购 相互依赖的任务,Gulp需要此提示,如上例所示。 (即任务two
在任务one
调用cb()
之前不会开始。)实际上,如果您不希望任务同时执行,则会阻止任务同时运行。
您可以在此处详细了解:https://github.com/gulpjs/gulp/blob/master/docs/API.md#async-task-support