在片段试图partial中无法调用render过来的参数
发布于 2年前 作者 kulelikule 737 次浏览

路由里面:res.render('user’, { title: user.name, posts: posts, }); user.ejs里面:<% if (user) { %> <%- partial(‘say’) %> <% } %> <%- partial(‘posts’) %> posts里面:<% posts.forEach(function(post, index) { if (index % 3 == 0) { %> … 程序大概是这样的,但是报错说,posts is not defined ,传过来的posts对象在片段试图中无法获取到

回到顶部