Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
也许是一个愚蠢的问题,但是,是否可以通过res.render()Express 发送多个变量?
res.render()
因为,当我这样做时
res.render('index', { title: 'Express', name: 'Arnaud' });
我有所有这些漂亮的错误告诉我name没有定义。
name
在这个视图中
extends layout block content h1 Salut #{name} p Welcome to #{title}
任何想法 ?
在路线:
res.render("index", { data: { title: "Express", name: "Arnaud" } })
鉴于:
<%= data.title %> <%= data.name %>
奇怪的事情很奇怪:我重新生成了一个新的 Express 项目,一切都很好......