我从客户端调用服务器函数,执行UNIX命令并在服务器上获取输出,但我需要将结果返回给调用它的客户端函数。我在服务器上输出,但Meteor.call立即返回结果 undefined ,bc exec命令需要一些时间才能运行。任何建议如何延迟获得结果并绕过这个问题?
客户来电:
if (Meteor.isClient) {
Template.front.events({
'click #buttondl': function () {
if (inputdl.value != '') {
var link = inputdl.value;
Meteor.call('information', link, function(error, result) {
if (error)
console.log(error);
else
console.log(result);
});
}
}
});
}

服务器方法:
Meteor.methods({
information: function (link) {
exec = Npm.require('child_process').exec;
runCommand = function (error, stdout, stderr) {
console.log('stdout: ' + stdout);
console.log('stderr: ' + stderr);
if(error !== null) {
console.log('exec error: ' + error);
}
return stdout;
}
exec("youtube-dl --get-url " + link, runCommand);
}
});

答案 0 :(得分:1)
这个问题每周被问一次。您无法在回调函数中调用return。无论是否已调用exec
的回调,该方法将在函数结束时返回。这就是异步编程的本质。
您需要使用exec
的同步变体,或者以其他方式将结果返回给客户端(例如,被动更新的集合)。
您可以使用execSync
(https://nodejs.org/api/child_process.html#child_process_child_process_execsync_command_options):
return execSync("youtube-dl --get-url " + link);