我使用node.js v4.4.4,我需要从node.js运行.bat
文件。
从我的节点应用程序的js文件的位置,可以使用带有以下路径的命令行运行.bat(Window平台):
'../src/util/buildscripts/build.bat --profile ../profiles/app.profile.js'
但是当使用节点我无法运行它时,不会抛出任何特定错误。
我在这里做错了什么?
var ls = spawn('cmd.exe', ['../src/util/buildscripts', 'build.bat', '--profile ../profiles/app.profile.js']);
ls.stdout.on('data', function (data) {
console.log('stdout: ' + data);
});
ls.stderr.on('data', function (data) {
console.log('stderr: ' + data);
});
ls.on('exit', function (code) {
console.log('child process exited with code ' + code);
});
答案 0 :(得分:14)
你应该可以运行这样的命令:
var child_process = require('child_process');
child_process.exec('path_to_your_executables', function(error, stdout, stderr) {
console.log(stdout);
});
答案 1 :(得分:11)
以下脚本解决了我的问题,基本上我必须:
转换为.bat文件的绝对路径引用。
使用数组将参数传递给.bat。
var bat = require.resolve('../src/util/buildscripts/build.bat');
var profile = require.resolve('../profiles/app.profile.js');
var ls = spawn(bat, ['--profile', profile]);
ls.stdout.on('data', function (data) {
console.log('stdout: ' + data);
});
ls.stderr.on('data', function (data) {
console.log('stderr: ' + data);
});
ls.on('exit', function (code) {
console.log('child process exited with code ' + code);
});
以下有用的相关文章列表:
https://nodejs.org/api/child_process.html#child_process_asynchronous_process_creation
https://nodejs.org/api/child_process.html#child_process_spawning_bat_and_cmd_files_on_windows