formvalidationプラグインを使用しており、2 つの正規表現パターンが必要です。1 つは少なくとも 1 桁の 6 文字を検出するもので、もう 1 つはユーザーが入力したパスワードのスペースを検出するものです。エラーメッセージは両方で異なるはずです。これは 2 つのパターンが必要です。
これまでのところ、1 つの JavaScript パターンを使用しようとしました
validators: {
regexp: {
regexp: /^[a-z\s]+$/i,
message: 'The full name can consist of alphabetical characters and spaces only'
}
}
および 1 つのインライン パターン
<input type="text" class="form-control" name="fullName"
data-fv-regexp="true"
data-fv-regexp-regexp="^[a-z\s]+$
data-fv-regexp-message="The full name can consist of alphabetical characters and spaces only" />
1 つの JavaScript と 1 つのインラインがある場合、インラインのみが使用されます。
また、2つのjavascriptパターンを試しましたが、これはエラーです
validators: {
regexp: {
regexp: /^[a-z\s]+$/i,
message: 'The full name can consist of alphabetical characters and spaces only'
},
regexp: {
regexp: different regex,
message: 'different message'
}
}
誰もこれを行う方法を知っていますか?