VeeValidate-如何验证应该使用http://的URL

时间:2019-10-16 07:08:00

标签: vuejs2 vee-validate

我尝试通过以下方式验证我的输入:

<input 
     type="text"
     name="webhookURL"
     placeholder="Enter webhook URL"
     class="text-input"
     v-validate="'required|url'"
/>

,但如果我要填写以下输入内容,则返回true:google.com, 因此,如果我这样填写http://exampleURL.com(使用http://或https://),我需要验证返回true。

1 个答案:

答案 0 :(得分:1)

您必须使用require_protocol

<input v-validate="{url: {require_protocol: true }}"

请参见doc