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.
我是 RoR 的新手。我正在尝试对视图进行一些更改。
我必须覆盖视图中的变量。但我无法弄清楚哪个控制器设置了该变量的值。如何找到变量对应的控制器?
谢谢
Nish,我还建议将其添加到您的 application.html.erb
<%= debug(params) if Rails.env.development? %>
它帮助我了解了很多关于 Rails 中的流程的知识,并了解了当我查看我的应用程序时在说什么。
希望能帮助到你。