我如何validate
字段并确认Node.js
我使用的代码如下。即使我发送一个空字段,也不会显示错误消息。
if (req.body.password !=="") {
res.render('user/s_in',{csrfToken: req.csrfToken(),messages: 'Field is empty'});
return;
}
答案 0 :(得分:0)
您是否在验证API之前使用了body-parser中间件?
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.0"
defaultConfig {
minSdkVersion 14
targetSdkVersion 22
applicationId "com.commonsware.android.espresso"
}
}