如何在connect-flash消息中包含变量来创建动态链接

时间:2017-11-12 18:48:33

标签: node.js express ejs connect-flash

我正在努力在include variable :id error消息中创建动态链接(flash)。

链接应重定向到现有条目。

JS

req.flash('errors', 'Name already in use!'+'<a href=\"/players/:id/edit"\>Edit existing player account</a>');

EJS

<% if (errors.length > 0) { %>
 <div class="alert alert-danger">
  <% for (error of errors) { %>
   <%- error %><br>
  <% } %>
 </div>
<% } %>

0 个答案:

没有答案