rails helper_method的替代方法是什么?因为它在最近的版本中不受支持。 我尝试在application.rb控制器和视图中放置一个帮助器方法,尝试使用它。
app/controllers/application.rb
helper_method :sidebar_values
def sidebar_values
@food_preferences = FoodPreference.all
@food_types = FoodType.all
@cuisines = Cuisine.all
end
app/views/layouts/application.html.erb
<% @food_preferences.each do |fp| %>
<p><%= fp.name%></p>
<%end%>
</div>