0
在我的項目中,我有兩個部分:landing
和app
。着陸它的顯示,當你沒有登錄,應用程序是當你登錄。無論是主路(http://localhost:3000/)根據渲染器在expressjs中加載不同的靜態圖
兩者都independient,所以我想有靜力學的目錄 - static/ -- landing/ --- css/ --- js/ -- app/ --- css/ --- js/
是可能的負載static/landing/
爲http://localhost:3000/static/css/
當用戶沒有登錄和static/app/
當用戶登錄?
你在你的代碼是如何檢測到用戶登錄或不是?請根據我們的建議 –
使用'express-session'和'passport'模塊進行解釋。 Passport有一個名爲isAuthenticated()的方法 – EnZo