node.js – 在Express中使用`jade`模板引擎时渲染`html`

前端之家收集整理的这篇文章主要介绍了node.js – 在Express中使用`jade`模板引擎时渲染`html`前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在将模板引擎保持为玉的同时呈现html文件

app.set(‘view engine’,’jade’);是我将模板引擎设置为玉的地方,我想做类似的事情

app.get('/world',function(req,res){
    res.render('profile.html',);

要呈现html文件.

我正在使用express.js在node.js中编程.

注意:我已经要求使用var html = require(‘html’);

编辑:

我知道res.render不需要用,因为html已经呈现. res.send(profile.html);给出配置文件错误未定义

解决方法

您可以渲染玉文件(.jade)但不能渲染html文件,因为结果将是html.你在渲染html文件时是什么意思?

用res.sendfile替换你的res.render(‘profile.html’)(‘[path_to_the_file] profile.html’)

原文链接:https://www.f2er.com/nodejs/241310.html

猜你在找的Node.js相关文章