我使用快遞驗證器插件快遞快遞-校驗中斷校驗器鏈
var input = {
'username': {
notEmpty: true,
isEmail: {
errorMessage: 'Invalid Email.'
}
},
'password': {
notEmpty: true,
errorMessage: 'Invalid Password' // Error message for the parameter
}
};
req.checkBody(input);
var errors = req.validationErrors();
if (errors) {
console.log(errors);
}
如果我通過用戶名作爲空輸出
[ { param: 'username', msg: 'Invalid param', value: '' },
{ param: 'username', msg: 'Invalid Email.', value: '' },
{ param: 'password', msg: 'Invalid Password', value: '' } ]
如何剎車鏈條如果驗證的人失敗。
提高他們的GitHub庫 – hjpotter92
@ hjpotter92我會刪除這個問題,功能要求,提高功能請求 –
保持的問題在這裏。一旦請求得到迴應,你可以回答它。 – hjpotter92