1

我有一组 @contacts 在不同的模型控制器视图上迭代:

<%= @contacts.each do |item| %>
<p>
<%= item.name %>
</p>
<% end %>

这是控制器的样子:

@user = current_user
@contacts =  Contact.desc('created_at').where(:user_id => @user.id)

它按预期运行,但在迭代文本中删除了这一行:

#<Mongoid::Contextual::Mongo:0x007fe0bc0efbd8>

到底他妈发生了什么?

4

1 回答 1

6

改变

<%= @contacts.each do |item| %>

<% @contacts.each do |item| %>

(删除=)

于 2012-09-17T01:22:30.263 回答