3

node.js我试图产生一个子进程

(mode=All我还必须在执行 exe 文件时传递一个参数)

我正在按照以下方式做。但没有得到任何东西

`var exec = require('child_process').execFile;
var fun =function(){ 
   exec('Sample.exe mode=All', function(err, data) {  
        console.log(err)       
        console.log(data.toString());                       
    });  
}
fun();`

在命令行中得到输出为

 `c:\files\Sample.exe mode=All`

输出如下

{"ID":"VM-WIN7-64","OS":"Windows 7"}{"ID":"VM-WIN7-32","OS":"Windows 7"}{"ID":"V M-WIN7-32-1","OS":"Windows 7"}{"ID":"VM-WIN7-32-2","OS":"Windows 8"}

如何使用 node.js 获得上述输出

4

1 回答 1

5

这是execFile文档中的函数签名:

child_process.execFile(file, args, options, callback)

您将可执行文件路径与空格和参数组合在一起。execFile没想到。根据文档尝试:

exec('Sample.exe', ['mode=ALL'], {}, function(err, data) { 
于 2013-11-12T07:02:34.193 回答