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.
在某种开发控制台中,是否有一个选项或 gem 可以准确地告诉我哪个控制器提供了哪些视图来创建我正在查看的当前页面,以及参数和什么不是。这对于探索我没有经验的更复杂的应用程序非常有帮助。
谢谢!
将此添加到您的默认布局中,您将看到每个页面的控制器、操作和参数
<%= debug(params) if Rails.env.development? %>
你可能需要添加一些 CSS 让它看起来不错
从跟踪您的日志文件开始tail -f log/development.log
tail -f log/development.log
Rack Mini Profiler 很好:
新遗物