Rails 插件用于跟踪验证错误

发布于 2024-11-30 22:54:52 字数 604 浏览 1 评论 0原文

即使我们添加了最具解释性的错误消息并利用一些好的做法 为此,用户根本不会阅读错误消息。我们最常见的支持之一是用户未阅读的验证已涵盖的错误。

我们的软件有一个控制面板,支持人员可以快速访问他们可能需要的任何有用信息,以提供快速、优质的支持。

我想向此控制面板添加每个用户最近验证错误的列表,以便我们可以快速确定用户面临的问题是否只是验证问题。

是否有任何插件允许我在应用程序中的任何模型中编写对任何验证错误的回调?

我很想能够写出这样的东西

def on_any_validation_error(model, params)
  #my logic to add to some log control database backed or not    
end

Even if we add the most explaning error messages and make use of some good practices to do so, users simply don´t read error messages. One of the most recurring support that we have are errors already covered by validations not read by our users.

Our software has a control panel for the support people to have quick access to any usefull information they might need to provide a quick and quality support.

I want to add to this control panel a list of last validation errors per user so we can rapidly identify if the problem users are facing are just validation problems.

Are there any plugins that allow me to write a callback to any validation error in any model in my app?

I´d love to be able to write something like this

def on_any_validation_error(model, params)
  #my logic to add to some log control database backed or not    
end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

多情癖 2024-12-07 22:54:52

我不知道是否存在这样的插件,但我刚刚玩了一下 after_validation 回调,您可以编写一个如下所示的初始化程序:

def log_errors
  log(self) unless errors.blank?
end
ActiveRecord::Base.send(:after_validation,:log_errors)

然后您必须在 log 方法中实现您的逻辑。

I don't know if a plugin like that exists but I've just played a bit with the after_validation callback, you could write an initializer with something like the following:

def log_errors
  log(self) unless errors.blank?
end
ActiveRecord::Base.send(:after_validation,:log_errors)

Then you have to implement your logic in the log method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文