Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是在想,如果我能以一种很酷、很干燥的方式完成这项工作……但我对 Rails 很陌生,不知道我该怎么做……
有什么帮助吗?
提前致谢。
刚刚想通了:
rescue_from Foo::BarException do |exception| render file: "#{Rails.root}/public/403", formats: [:html], status: 403, layout: true end
然后像老板一样做403.html,它应该可以工作。
但是,我仍然不知道如何使自动 404 也使用模板......它总是显示异常,即使我在我的应用程序控制器中添加了救援。