Я хочу отобразить столбец «имя» после того, как был найден из таблицы mytest.
В mytest.rb я определил "attrib_accessor: name";
В индексе процедуры в каталоге /controller/mytest_controller.rb,
def index
###[Ignore some code]
@mytesttbl=@user.find_by_id
### I am able to verify the tuples in @mytesttbl
end
В /view/mytest/index.rhtml у меня есть код вроде
<div id="mytesttable"> <%= render(:partial =>"mytesttbl", :object => @mytesttbl)%> </div>
В /view/mytest/_mytesttbl.html.erb. У меня есть код как
<tr>
<td><%=mytestbl.name %></td>
<tr>
когда я запустил приведенный выше код, у меня ошибка на _mytesttbl.html.erb,
undefined method 'name ' for #<Array:0xb6c971cc>
Пожалуйста, помогите. Спасибо,