問題タブ [vee-validate]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
412 参照

vue.js - Javascript functions are not working properly in the vuejs

Below is my code. I would like to validate the form during submit. I prevented submit action untill all data is valid. Hence I have used "validata all()" method. If the form has null/invalid date, it should alert "not submitted".Else it should alert "submitted". My problem is that, when I clicked the submit button at first time, the alert displays as "submitted" instead of "not submitted" Result1. But when I clicked the same button for the second time or further it displays correctly as "not submitted" Result2. I don't know the reason, why it's not working in the first time.

0 投票する
1 に答える
136 参照

vue.js - 共通の js ファイルからすべての vue ファイルへの検証にアクセスする方法は?

以下は私のコードです。addEmployee.vue ファイルで検証を行い、addEmploee.vue ファイルのスクリプト部分内に検証を記述しました。しかし、これらの検証をcommon.jsファイルに入れ、他のvueファイルの検証にも(プロジェクト全体で)アクセスしたい例: addClient.vueファイルでも同じ検証にアクセスしたい.

0 投票する
1 に答える
5383 参照

vue.js - vee validate "required" 検証は、フィールドの変更時にのみ機能します

以下は私のコードです。私のフォームには 3 つのフィールドがあります。ファーストネーム、ミドルネーム、ラストネーム。これらのフィールドはすべて必須フィールドとして設定されています。唯一の違いは、"Firstname & Lastname" には input タグが含まれていますが、"Middlename" には b-form-input タグが含まれていることです。実際、私の問題は、これらの("Firstname & Lastname")フィールドにフォーカスを当てる(ぼかし)と、必要なエラーがスローされますが、("Middlename")フィールドに同じことをすると、 Image1 ではありませ。その ("Middlename") フィールド Image2 に値を入力する必要があります次に、エラー Image3をスローしている値を削除しました。つまり、必要な検証は "("Middlename") フィールドの「変更時」にのみ機能します。その理由は何ですか?これ?