VeeValidate - 如何验证应该与 http:// 一起使用的 URL
VeeValidate - how to validate URL that should be with http://
我已尝试通过以下方式验证我的输入:
<input
type="text"
name="webhookURL"
placeholder="Enter webhook URL"
class="text-input"
v-validate="'required|url'"
/>
但是如果我像这样填写输入是 return 是真的:google.com,
所以我需要验证 return true 如果我像这样填写 http://exampleURL.com (使用 http:// 或 https://)
您必须使用 require_protocol
<input v-validate="{url: {require_protocol: true }}"
见doc
我已尝试通过以下方式验证我的输入:
<input
type="text"
name="webhookURL"
placeholder="Enter webhook URL"
class="text-input"
v-validate="'required|url'"
/>
但是如果我像这样填写输入是 return 是真的:google.com, 所以我需要验证 return true 如果我像这样填写 http://exampleURL.com (使用 http:// 或 https://)
您必须使用 require_protocol
<input v-validate="{url: {require_protocol: true }}"
见doc