我正在努力在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>
<% } %>