0
我在express節點中設置了2個靜態目錄,如下所示。在express節點中設置2個靜態目錄
app.use(express.static(__dirname + '/admin_public'));
app.use(express.static(__dirname + '/client_public'));
我的疑問是我是否可以Express服務器連接到2角象下面這樣:
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname + '/admin_public/index.html'));
});
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname + '/client_public/index.html'));
});
如果上述2 res.sendFile()
是正確的,當我建立我的混合應用程序的角度。
1)我如何訪問我的服務器(它會是什麼樣的:localhost:8080/client/public
和localhost:8080/admin_public
)2個不同的前端,一個客戶端和一個管理員?
2)將快遞連接到2 index.html
的正確方法是?如果不是,它應該如何?
好吧,讓我試試還原 – phyme