-1
Он продолжает показывать предупреждение ... Что не так с моим unless errors
?Если инструкция не работает в мопсе
Мой маршрут
app.set('view engine', 'pug')
app.get('/', function (req, res) {
res.render('index', { errors: false })
})
Index.pug
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<!--<link rel="icon" href="../../favicon.ico">-->
<title>Signin Template for Bootstrap</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="signin.css" rel="stylesheet">
</head>
<body>
<div class="container">
unless errors
.alert.alert-danger
<strong>Oh snap!</strong> Change a few things up and try submitting again.
<form class="form-signin" method="POST" action="/">
<h2 class="form-signin-heading">Login om verder te gaan</h2>
<label for="inputEmail" class="sr-only">Email adres</label>
<input type="email" id="inputEmail" class="form-control" placeholder="Email adres" required autofocus>
<label for="inputPassword" class="sr-only">Wachtwoord</label>
<input type="password" id="inputPassword" class="form-control" placeholder="Wachtwoord" required>
<div class="checkbox">
<label>
<input type="checkbox" value="remember-me"> Onthoudt mij
</label>
</div>
<button class="btn btn-lg btn-primary btn-block" type="submit">Login</button>
</form>
</div> <!-- /container -->
<script src="js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>
Не хотите сказать «если ошибки»? «Если ошибки не будут возвращены», если ошибки равны false, что и делает. (Я не знаю мопса, но это, похоже, проблема) – yvanavermaet