我有一個工作項目,但我決定嘗試視覺節點(http://www.visualnode.info/readme)以便在Visual Studio環境中使用node.js。使用視覺節點原因快遞不提供靜態文件
出於某種原因,該行不會影響快遞爲靜態文件:
app.use(express.static(path.join(__dirname, 'client')));
當嘗試:
res.sendfile('client/views/index.html');
引擎搜索下錯了路徑的文件:
404 Error: ENOENT, stat 'C:\Windows\system32\client\views\index.html'
問題是'C:\Windows\system32\'
從哪裏來的?
而不是,應該有我的項目文件夾。
希望他們會得到它修復。感謝解決方案! – ohadinho