nodejs可以打开任意非系统服务的exe吗
1 回答
MMTTMM
TA贡献1869条经验 获得超4个赞
可以。
用 Node.js 自带的 child_process 模块就行,或者用 execa 之类的库也行。
1 2 3 4 5 6 7 | var 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(); |
- 1 回答
- 0 关注
- 538 浏览
添加回答
举报
0/150
提交
取消