因此,我正在使用MDBVUE(https://mdbootstrap.com/vue/)表单组件,但是服务器端表单验证存在问题。
vue特定文档显示了vue组件对表单元素的使用,例如:
<mdb-input size="sm" label="Example label" />
到目前为止,一切都很好。现在添加服务器端验证。文档在此处分解,并恢复为显示将常规html标签与相应的CSS类一起使用,即:
<input type="text" class="form-control is-invalid" id="validationCustomUsername" placeholder="Username" aria-describedby="inputGroupPrepend" required>
基本html标记在vue中无法正常工作,因此不能选择使用它们。由于缺少文档,因此我尝试将类直接放在自定义组件上,即:
<mdb-input class="is-invalid" ...
我什至挖了源文件,并在error-msg
组件上找到了mdb-input
道具,并尝试以这种方式提供无效错误消息,但我没有得到的是要显示的无效消息。有人成功使用MDBVue进行服务器端表单验证吗?