在静态html上呈现res.locals中间件数据

时间:2018-11-01 14:27:49

标签: node.js express

我想在静态页面“ results.html”上从res.locals.result渲染数据。 如何将数据传递到视图中。

我没有使用模板引擎。

app.post("/post", startLoop, (req,res,next)=>{
    res.render('results.html', {"variable":res.locals.result});
})

谢谢。

0 个答案:

没有答案