我尝试通过以下方式验证我的输入:
<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。
答案 0 :(得分:1)