我創建了一個如下所示的b.js腳本文件。當我運行這個使用node.exe程序,然後它正確地打開「word2code.exe」文件。 如何在windows的appjs中將該腳本添加到.html頁面(作爲鏈接或按鈕onclick事件)?如何在html中運行此腳本?
var exec = require('child_process').execFile;
var fun =function(){
console.log("fun() start");
exec('word2code.exe', function(err, data) {
console.log(err)
console.log(data.toString());
});
}
fun();
嘗試使用''將此代碼鏈接到HTML文檔? – 2014-11-21 07:32:41
你想執行客戶端應用程序嗎? – 2014-11-21 07:58:04
我想在appjs中使用node.js從html頁面運行.exe文件。 (儘可能我知道這是不可能運行.exe文件使用簡單的JavaScript) – Debu 2014-11-21 09:07:25