如何处理 Sinatra 中的 Mongoid 错误?

发布于 2024-11-02 08:51:05 字数 105 浏览 1 评论 0原文

是否可以在我的 Sinatra 应用程序中编写一个错误处理程序来处理来自 Mongoid 的错误?例如,我可以编写一个方法来处理来自 Mongoid 的 DocumentNotFound 异常吗?

Is it possible to write an error handler in my Sinatra app that will handles errors coming from Mongoid? For example, can I write a method that will handle a DocumentNotFound exception from Mongoid?

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

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

发布评论

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

评论(1

鯉魚旗 2024-11-09 08:51:05

当然可以!

在 Sinatra 中为 Mongoid 异常编写一个错误处理程序:

error Mongoid::Errors::DocumentNotFound do
  #pass the id's to the view
  haml :mongoiderror, :locals => { :ids => request.env['sinatra.error'].identifiers }
end

Sure you can!

Write an error handler for the Mongoid exception in Sinatra:

error Mongoid::Errors::DocumentNotFound do
  #pass the id's to the view
  haml :mongoiderror, :locals => { :ids => request.env['sinatra.error'].identifiers }
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文