Node.js
同期とノード間の非同期プログラミング
サーチ…
asyncの使用
asyncパッケージは、非同期コード用の関数を提供します。
auto関数を使用すると、2つ以上の関数間の非同期関係を定義できます。
var async = require('async');
async.auto({
get_data: function(callback) {
console.log('in get_data');
// async code to get some data
callback(null, 'data', 'converted to array');
},
make_folder: function(callback) {
console.log('in make_folder');
// async code to create a directory to store a file in
// this is run at the same time as getting the data
callback(null, 'folder');
},
write_file: ['get_data', 'make_folder', function(results, callback) {
console.log('in write_file', JSON.stringify(results));
// once there is some data and the directory exists,
// write the data to a file in the directory
callback(null, 'filename');
}],
email_link: ['write_file', function(results, callback) {
console.log('in email_link', JSON.stringify(results));
// once the file is written let's email a link to it...
// results.write_file contains the filename returned by write_file.
callback(null, {'file':results.write_file, 'email':'[email protected]'});
}]
}, function(err, results) {
console.log('err = ', err);
console.log('results = ', results);
});
このコードは、 get_data
、 make_folder
、 write_file
、およびemail_link
を正しい順序で呼び出すだけで、同期的に行われている可能性があります。 Asyncは結果を追跡し、エラーが発生した場合( null
等しくないcallback
最初のパラメータ)、他の関数の実行を停止します。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow