suchen

Heim  >  Fragen und Antworten  >  Hauptteil

node.js - nodejs+express渲染页面

想用node.js+express写网站,网站头部一样,首页没有footer,其他几页都有,那我这个网站视图要分几个文件,用户点击切换时如何渲染每个页面?

巴扎黑巴扎黑2777 Tage vor563

Antworte allen(2)Ich werde antworten

  • PHP中文网

    PHP中文网2017-04-17 13:35:32

    这就要看你的需求了呀,你可以

    头部 + 主体 + footer
    
    or
    
    头部 + footer
    

    使用模板来配置需要的内容,如ejs等。

    或者可以选择单页面应用,使用路由来控制渲染。

    Antwort
    0
  • 阿神

    阿神2017-04-17 13:35:32

    如果用ejs的话,弄个header和footer文件,在每个页面中根据需要 include 一下,header和footer。
    例如:

    <%- include header %>
    <!-- 主要内容区 -->
    <%- include footer%>

    Antwort
    0
  • StornierenAntwort