2
私はNodeJSとExpressを初めて使い、APIパラメータを検証したいと思います。 は、今私がでパラメータを検証:ノードjsのすべての必須パラメータを検証するカスタム応答メッセージ
if(!req.body.parametername)
return res.send({"message": "Please provide parametername"});
if(!req.body.parametername)
return res.send({"message": "parametername can not be blank"});
しかし、私は、応答は次のようになりたい:パラメータが用意無効であるか、ない場合は
{
"username": [
"This field is required."
],
"password": [
"This field can not be blank."
]
}
これは私が欲しい応答です。
どうもありがとうございました。それは私をたくさん助けました。 –