标签: node.js express
我想在静态页面“ results.html”上从res.locals.result渲染数据。 如何将数据传递到视图中。
我没有使用模板引擎。
app.post("/post", startLoop, (req,res,next)=>{ res.render('results.html', {"variable":res.locals.result}); })
谢谢。