我如何用 jquery 验证插件检测到的验证错误填充淘汰可观察数组
我正在设计一个具有可观察数组的淘汰赛视图模型对象。提交表单时,jquery 验证插件会处理所有这些,但我不想在屏幕上显示错误,而是想填充可观察数组并让屏幕自行更新(由于 ko 绑定的魔力)。这可能吗?
I am designing a viewmodel object in knockout that has an observable array. When submitting the form, jquery validation plugin is taking care of all this, but instead of showing the errors in the screen, i would like to fill the observable array and let the screen update by itself (due to the magic of ko bindings). Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 jQuery 验证插件文档中的 showErrors 选项。您可以指定一个将在错误发生时调用的函数,此时您可以将它们添加到可观察数组中:
Look at the showErrors option in the jQuery validate plugin documentation. You can specify a function that will be invoked with the errors, at which point you could add them to your observable array: