framework7表单如何获取验证结果
在vue中使用了framework7
<template>
<f7-page no-toolbar no-navbar no-swipeback login-screen>
<f7-login-screen-title>Sign In</f7-login-screen-title>
<f7-list form ref="form">
<f7-list-input
label="Username"
type="text"
placeholder="Your username"
:value="username"
@input="username = $event.target.value"
validate
required
></f7-list-input>
<f7-list-input
label="Password"
type="password"
placeholder="Your password"
:value="password"
@input="password = $event.target.value"
validate
required
></f7-list-input>
<f7-list>
<f7-list-button type="submit" @click="signIn">Sign In</f7-list-button>
</f7-list>
</f7-list>
</f7-page>
</template>
在signin方法中使用app.input.validateInputs("form")
可以触发验证表单,但是没有返回验证结果,无法根据验证结果进行下一步判断。
如何才能获取验证结果呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很遗憾,没有解决方法,只能自己写查验是什么验证不合格了