愚蠢的stackoverflow要求更多的上下文......我打开了我做的索引帖子页面(如下),出于某种奇怪的原因,一个额外的数组出现在实际文本下方。为什么?
<h1><%= @posts.each do |post| %></h1>
<p><%= post.content %></p>
<% end %>
帖子控制器:
class PostsController < ApplicationController
def index
@posts = Post.find(:all, :order => "content")
end
def new
@post = Post.new
end
def create
@post = Post.new(params[:post])
end
end
用户模型:
class Post < ActiveRecord::Base
attr_accessible :content, :title
belongs_to :user
end
哎呀想法,我这样显示。
Yippi
[#<Post id: 1, title: "Hello", content: "Yippi", created_at: "2013-01-25 16:36:08", updated_at: "2013-01-25 16:36:08">]