2013-02-11 125 views
0

我有一个主题has_many帖子。每个帖子属于一个用户,并且每个用户拥有一个配置文件。如何访问关联模型的关联模型?

在特定主题我“秀”页面中,我尝试显示谁创造了贴的用户的配置文件信息:

<% @topic.posts.each do |post| %> 

<%= post.user.profile.first_name %> 

<% end %> 

我收到以下错误:

undefined method `profile' for nil:NilClass

任何想法为什么它不允许我访问配置文件?请指教。

我的主题控制器如下:

class TopicsController < ApplicationController 
    # GET /topics 
    # GET /topics.json 
    add_breadcrumb :index, :topics_path 

    def index 
    if params[:tag] 
     @topics = Topic.tagged_with(params[:tag]) 
    else 
     @topics = Topic.all 
    end 

    @newtopic = Topic.new 


    respond_to do |format| 
     format.html # index.html.erb 
     format.json { render json: @topics } 
    end 
    end 

    # GET /topics/1 
    # GET /topics/1.json 
    def show 
    @topic = Topic.find(params[:id]) 
    @posts = @topic.posts 
    @newpost = @topic.posts.build 
    add_breadcrumb @topic.name 

    respond_to do |format| 
     format.html # show.html.erb 
     format.json { render json: @topic } 
    end 
    end 

    # GET /topics/new 
    # GET /topics/new.json 
    def new 
    add_breadcrumb :new, :topics_path 
    @topic = Topic.new 

    respond_to do |format| 
     format.html # new.html.erb 
     format.json { render json: @topic } 
    end 
    end 

    # GET /topics/1/edit 
    def edit 
    @topic = Topic.find(params[:id]) 
    end 

    # POST /topics 
    # POST /topics.json 
    def create 
    @topic = Topic.new(params[:topic]) 

    @topic.user_id = current_user.id 
    @topic.last_poster_id = current_user.id 
    @topic.last_post_at = Time.now 


    respond_to do |format| 
     if @topic.save 
     format.html { redirect_to @topic, notice: 'Topic was successfully created.' } 
     format.json { render json: @topic, status: :created, location: @topic } 
     else 
     format.html { render action: "new" } 
     format.json { render json: @topic.errors, status: :unprocessable_entity } 
     end 
    end 
    end 

    # PUT /topics/1 
    # PUT /topics/1.json 
    def update 
    @topic = Topic.find(params[:id]) 

    respond_to do |format| 
     if @topic.update_attributes(params[:topic]) 
     format.html { redirect_to @topic, notice: 'Topic was successfully updated.' } 
     format.json { head :no_content } 
     else 
     format.html { render action: "edit" } 
     format.json { render json: @topic.errors, status: :unprocessable_entity } 
     end 
    end 
    end 

    # DELETE /topics/1 
    # DELETE /topics/1.json 
    def destroy 
    @topic = Topic.find(params[:id]) 
    @topic.destroy 

    respond_to do |format| 
     format.html { redirect_to topics_url } 
     format.json { head :no_content } 
    end 
    end 
end 
+2

你有一个帖子,其中用户为零,导致错误。 – jvnill 2013-02-11 07:24:45

+0

感谢您的回复。我检查了,没有user_id没有帖子。任何其他的想法可能是错误的? – 2013-02-11 21:50:45

回答

1

您的错误是由显示操作@topic.posts.build中的此行和视图@topic.posts.each中的此行所引起的。由于您正在控制器中创建一个新帖子,因此@topic.posts包含了最有可能让用户为零的新记录。所以解决您的问题的方法是在您的视图中使用@posts而不是@topic.posts

+0

谢谢,解决了问题! – 2013-02-13 06:57:20

1

检查数据库。它很有可能在你的数据库中有一个对应于没有用户的帖子。由于该帖子的用户为空,因此用户(空)nil:NilClass的配置文件变得未定义。

这种情况主要发生在创建属于用户的帖子后,但您从数据库中删除属于该帖子的用户。

正确的方法是强加在你的用户模型的约束应该是─

class Post 
belongs_to :user, :dependent => :destroy 
end 

因此,如果用户被删除,该用户相应的职位也被删除。

请注意,在使用表格强加关系之后,直接从数据库中删除记录并不是一种好的做法。

+0

感谢您的评论。我更新了关系,以便存在:dependent =>:destroy。但我也检查了所有的记录,没有没有有效用户ID的帖子。任何其他想法可能是什么?谢谢 – 2013-02-11 21:51:47