温温酱
可以。用 Node.js 自带的 child_process 模块就行,或者用 execa 之类的库也行。1234567var exec = require('child_process').execFile;var fun =function(){ console.log("fun() start"); exec('HelloJithin.exe', function(err, data) { console.log(err) console.log(data.toString()); }); }fun();