我正在为Ruby on Rails中的演示文稿注册应用程序。 因此,我创建了几个模型,包括学生模型和管理模型。我在带有引导程序的表中显示来自这些模型的数据,如下所示:
<table class="table">
<thead>
<tr>
<th scope="col">First name</th>
# ...
</tr>
</thead>
<tbody>
<%= @student.each do |stud| %>
<tr>
<td scope="row"><%= stud.Firstname %></td>
# ...
</tr>
<% end %>
</tbody>
我的控制器:
def list
@student = Student.all.order(:Firstname)
end
问题是该应用程序将数据库中所有对象的列表打印为哈希。
#<Presentation id: 3, Name: "Elon Musk", Year: "6 Gc", Title: "Electric Cars", Subject: "Phsics", Mentor: "Alberto Maraffio", Room: "N364", From: "13:45", Until: "14:00", Date: "07.11.18", Free: 5, Occupied: 0, Visitors: nil, created_at: "...", updated_at: "...">, #<Presentation id: 3, # ...
这不在layouts / application.html.erb文件中,我唯一可以解决的方法是注释掉<%= yield %>
,这当然也隐藏了页面的其余部分。我在做什么错了?
答案 0 :(得分:4)
此行
<%= @student.each do |stud| %>
不应显示在页面中。移至
<% @student.each do |stud| %>
除此之外,我不明白您想用这行做什么
@student.each = Student.all.order(:Firstname)
应该是
@student = Student.order(:Firstname)
请注意,@students
可能是此变量的更好名称
答案 1 :(得分:2)
def list
@student.each = Student.all.order(:Firstname)
end
这对我来说很奇怪!
应该是这样的:
def list
@students = Student.order(:Firstname)
end
然后您的HTML也应该像这样:
<table class="table">
<thead>
<tr>
<th scope="col">First name</th>
# ...
</tr>
</thead>
<tbody>
<% @students.each do |stud| %>
<tr>
<td scope="row"><%= stud.Firstname %></td>
# ...
</tr>
<% end %>
</tbody>