我尝试在节点js中执行以下操作
var command = " -d '{'title': 'Test' }' -H 'Content-Type: application/json' http://125.196.19.210:3030/widgets/test";
exec(['curl', command], function(err, out, code) {
if (err instanceof Error)
throw err;
process.stderr.write(err);
process.stdout.write(out);
process.exit(code);
});
当我在命令行中执行以下操作时,它可以工作
curl -d '{ "title": "Test" }' -H "Content-Type: application/json" http://125.196.19.210:3030/widgets/test
但是当我在nodejs中这样做时,它会告诉我
curl: no URL specified!
curl: try 'curl --help' or 'curl --manual' for more information
child process exited with code 2
答案 0 :(得分:6)
exec命令的options
参数不包含你的argv。
您可以直接使用child_process.exec
函数输入参数:
var exec = require('child_process').exec;
var args = " -d '{'title': 'Test' }' -H 'Content-Type: application/json' http://125.196.19.210:3030/widgets/test";
exec('curl ' + args, function (error, stdout, stderr) {
console.log('stdout: ' + stdout);
console.log('stderr: ' + stderr);
if (error !== null) {
console.log('exec error: ' + error);
}
});
如果你想使用argv参数,
您可以使用child_process.execFile
功能:
var execFile = require('child_process').execFile;
var args = ["-d '{'title': 'Test' }'", "-H 'Content-Type: application/json'", "http://125.196.19.210:3030/widgets/test"];
execFile('curl.exe', args, {},
function (error, stdout, stderr) {
console.log('stdout: ' + stdout);
console.log('stderr: ' + stderr);
if (error !== null) {
console.log('exec error: ' + error);
}
});
答案 1 :(得分:4)
您可以这样做......您可以轻松地将 this.on("selectedfiles", function(listFiles) {
cont_files = listFiles.length;
});
换成execSync
,如上例所示。
exec
答案 2 :(得分:2)
FWIW你可以在节点中本地做同样的事情:
var http = require('http'),
url = require('url');
var opts = url.parse('http://125.196.19.210:3030/widgets/test'),
data = { title: 'Test' };
opts.headers = {};
opts.headers['Content-Type'] = 'application/json';
http.request(opts, function(res) {
// do whatever you want with the response
res.pipe(process.stdout);
}).end(JSON.stringify(data));