以下是注册页面的代码,在解析messages.ejs文件时,我遇到了代码问题。我在行
上遇到语法错误语法错误:
missing ) after argument list in D:\Website Practice\Nodejs\node_passport_login_project\views\partials\messages.ejs while compiling ejs
请帮忙
<div class="row mt-5">
<div class="col-md-6 m-auto">
<div class="card card-body">
<h1 class="text-center mb-3">
<i class="fas fa-user-plus"></i> Register
</h1>
<%- include('./partials/messages') %>
<form action="/users/register" method="POST">
<div class="form-group">
<label for="name">Name</label>
<input
type="name"
id="name"
name="name"
class="form-control"
placeholder="Enter Name"
value="<%= typeof name != 'undefined' ? name : '' %>"
/>
</div>
<button type="submit" class="btn btn-primary btn-block">
Register
</button>
</form>
<p class="lead mt-4">Have An Account? <a href="/users/login">Login</a></p>
</div>```
</div>
</div>
消息文件中的代码在下面
<% if( typeof errors != 'undefined' ){ %>
<% errors.forEach((error){ %>
<%= error.msg %>
<% }) %>
<% } %>
[您需要定义function
并传递argument
,请尝试此希望它有帮助!!
<% if(typeof errors != 'undefined' ){ %>
<% errors.forEach(function(error) { %>
<%= error.msg %>
<% }); %>
<% } %>