gpt4 book ai didi

html - 在 Express 中使用 HTML 而不是 Jade

转载 作者:IT老高 更新时间:2023-10-28 21:47:43 27 4
gpt4 key购买 nike

在 Node.JS 中使用 Express 时如何摆脱 Jade?我只想使用纯 html。在其他文章中,我看到人们推荐了 app.register(),它现在在最新版本中已被弃用。

最佳答案

你可以这样做:

  1. 安装ejs:

    npm install ejs
  2. 将 app.js 中的模板引擎设置为 ejs

    // app.js
    app.engine('html', require('ejs').renderFile);
    app.set('view engine', 'html');
  3. 现在您可以在路由文件中分配模板变量

    // ./routes/index.js
    exports.index = function(req, res){
    res.render('index', { title: 'ejs' });};
  4. 然后你就可以在/views目录下创建你的html View 了。

关于html - 在 Express 中使用 HTML 而不是 Jade,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11495595/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com