I'm trying to render a partial, and want to use symbols to pass in the data:
<%= render 'form', :locals => { :course => @course, :categories => @categories } %>
In my partial though, I can't perform a collect on the :categories symbol, I get this error:
undefined method `collect' for :categories:Symbol
Extracted source (around line #9):
<%= f.select :category_id, :categories.collect{ |c| [c.name, c.id]}, {}, :style => 'font-size:1em;width:250px;' %>
Can you not use symbols this way?
You are calling
collect
on:categories
, instead ofcategories
.instead of
Moreover, you are mixing the two syntax to call
render
. It should be eitheror