はい、ここで説明されているように、リモートバリデーターによって返された追加データを使用できます: http://formvalidation.io/examples/using-data-returned-validator/
onError
イベントがトリガーされると、data.result
Web サービスの JSON 応答が含まれ、data.result.errorMessage
メッセージも含まれます。
別のバリデータ メッセージを設定するには、 http: //formvalidation.io/api/#update-messageupdateMessage()
で説明されている関数を使用します。
組み合わせると、コードは次のようになります。
$("#form")
.formValidation({
// other validator options...
fields: {
field-x: {
validators: {
remote: {
// other remote validator options here
onError: function(e, data) {
$("#form").formValidation("updateMessage", "field-x", "remote", "Error: " + data.result.errorMessage);
}
}
}
}
}
});