所以,按照 M. Hartl 的教程,我有这个 static_pages 控制器来显示这个
class StaticPagesController < ApplicationController
def home
if signed_in?
@micropost = current_user.microposts.build
@feed_items = current_user.feed.paginate(page: params[:page])
end
end
def help
end
def about
end
def contact
end
end
这使它在主页上显示所有当前用户的微博,但仅显示当前用户
我如何让它显示所有用户的微博,每一个都创建?