我如何用 jquery 验证插件检测到的验证错误填充淘汰可观察数组

发布于 2024-12-28 23:59:42 字数 107 浏览 0 评论 0原文

我正在设计一个具有可观察数组的淘汰赛视图模型对象。提交表单时,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别念他 2025-01-04 23:59:42

查看 jQuery 验证插件文档中的 showErrors 选项。您可以指定一个将在错误发生时调用的函数,此时您可以将它们添加到可观察数组中:

$(".selector").validate({
   showErrors: function(errorMap, errorList) {
    ko.utils.arrayPushAll(myArrayOfErrors, errorList);
  }
})

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:

$(".selector").validate({
   showErrors: function(errorMap, errorList) {
    ko.utils.arrayPushAll(myArrayOfErrors, errorList);
  }
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文