0
我正在使用express 4 - ejs組合爲我的web應用程序,我想知道如何渲染多個文件取決於被調用的路由/ url。快速呼叫多個文件 - EJS
比方說,我有header.ejs
,我要呈現在每一頁上,並header.ejs代碼:
<div class="wrapper">
<div class="header-area">Header IS Gonna Be Here</div>
<div class="content-area">Content Area Gonna Be Different on Every Page Depend on the Router</div>
</div>
我的存在調用header.ejs文件的方法是using res.render()
但我不能找出它同時呈現多個文件。謝謝你的回答,如果你覺得我的問題已經被問到了,你可以給我鏈接,然後我會檢查出來。
以及如何區分,包括不同的路線上的文件嗎? – myd07
檢查更新的答案。 –
謝謝,它的工作 – myd07