这是我将值/变量传递给部分的方式:
<%= render "partials/banner", :locals => {:text_1 => t(:"main.home.banner_text_1"),
:text_2 => t(:"main.home.banner_text_2") } %>
然后在部分:
<%= text_1 %> <%= text_2 %>
但得到“未定义的局部变量或方法text_1”
我应该在哪里设置变量,以便我的应用程序中的所有视图和布局都可以访问它?
谢谢!