我正在使用 rails 3 我有以下型号
我的控制器
class ContactController < ApplicationController
def index
@surveys = Survey.active
end
end
和我的看法
<%= @surveys.each do |p| %>
<li><%=p.id %>-<%=p.name %></li>
<%end%>
我的预期结果是,它通过调查变量在 li 中输出 id 和 name。它确实如此,但是它也会将变量转储到页面底部。
1-name
[#<Survey id: 1, name: "name", is_active: true, user_id: nil, open_script: "Opening Script", voicemail_script: "Voice Mail Script", closing_script: "Closing Script", email_script: "Email Script", created_at: "2012-12-19 15:17:36", updated_at: "2012-12-20 03:46:35">]