Rails关联 - 值是正确的,但关联是零

时间:2015-10-16 23:31:17

标签: ruby-on-rails ruby-on-rails-4 activerecord associations belongs-to

我整个下午一直在努力工作,而且我非常接近,但我的大脑只是跳过一些简单的东西,但我看不到它。

在此网站上,用户可以创建和加入俱乐部。当用户加入俱乐部时,他们作为俱乐部成员加入。俱乐部会员可以向俱乐部发帖。出于某种原因,我无法让我的俱乐部会员发布协会正常工作。该值正在填入正确的id,但是当我在控制台中检查关联时,我的结果为零。我的目标是能够获得发布帖子的俱乐部成员的用户名。

用户模型

has_many :club_memberships, :class_name => 'ClubMembership', :foreign_key => :member_id, :primary_key => :id 
has_many :clubs, :through => :club_memberships 

分会模特

has_many :club_memberships
has_many :members, :through => :club_memberships
has_many :posts

分会会员模式

belongs_to :club 
belongs_to :member, :class_name => "User", :foreign_key => :member_id, :primary_key => :id 
has_many :posts

发布模型

belongs_to :club
belongs_to :club_membership

相关路线

resources :clubs do
    resources :posts
end
  resources :club_memberships, :only => [:index, :create, :destroy] 

帖子控制器

class PostsController < ApplicationController
  before_action :set_post, only: [:show, :edit, :update, :destroy]
  before_action :set_club
  before_action :set_membership_id

  def new
    @post = Post.new
  end

  def show
    @posts = Post.find(params[:id])
  end

  def create
    @post = Post.new(post_params)
    @post.member_id = @club_membership.id
    @post.club_id = @club.id

    if @post.save
      redirect_to @club
    else
      render 'new'
    end
  end


  private
    def set_post
      @post = Post.find(params[:id])
    end

    def set_club
      @club = Club.find(params[:club_id])
    end

    def set_membership_id
      @club_membership = @club.club_memberships.find_by(member_id: current_user)
    end

    def post_params
      params.require(:post).permit(:title, :postcontent)
    end
end

通过关注俱乐部页面中的new_club_post_path(@club)link_to创建帖子。邮件创建正确,值正确。

最新帖子的控制台结果

> @post = Post.find(7)
  Post Load (0.2ms)  SELECT  `posts`.* FROM `posts` WHERE `posts`.`id` = 7 LIMIT 1
 => #<Post id: 7, member_id: 29, club_id: 22, title: "fdsafsadfas", postcontent: "fsdafsadfsadfsadfasdf", created_at: "2015-10-16 22:39:28", updated_at: "2015-10-16 22:39:28"> 

致电@ post.club返回true

> @post.club
  Club Load (0.2ms)  SELECT  `clubs`.* FROM `clubs` WHERE `clubs`.`id` = 22 LIMIT 1
 => #<Club id: 22, club_name: "new test club", club_type: "Movies", created_at: "2015-10-16 22:34:51", updated_at: "2015-10-16 22:34:51"> 

但是当我尝试@ post.club_membership时,结果为零,我无法弄清楚为什么会这样。

> @post.club_membership
 => nil 

如果我尝试为@club设置一个特定的值,我可以打电话给@ club.club_memberships,所以我认为该协会工作正常。我只是遇到从post到club_membership的问题。我希望打电话给这样的@post.club_membership.username,并让值返回帖子的相关用户名。如果我现在打电话,我会

NoMethodError: undefined method `username' for nil:NilClass

谢谢!

edit-- 这是post表的创建迁移。

class CreatePosts < ActiveRecord::Migration
  def change
    create_table :posts do |t|
      t.integer :member_id
      t.integer :club_id
      t.string :title
      t.text :postcontent

      t.timestamps null: false
    end
  end
end

更新答案 感谢网站上的精彩用户,我能够解决这个问题。

我的帖子模型应该将此作为关联:

belongs_to :club_membership, :class_name => 'ClubMembership', :foreign_key => :member_id, :primary_key => :id 

让我调用@post.club_membership.member.username来获取要显示的海报的用户名。

1 个答案:

答案 0 :(得分:0)

正如您在(优秀)问题中所显示的那样,您的帖子具有以下属性(以及时间戳和ID):

member_id: 29
club_id: 22
title: "fdsafsadfas"
postcontent: "fsdafsadfsadfsadfasdf"

您的Post模型具有以下关联:

belongs_to :club
belongs_to :club_membership

其中第一个将查找名为club_id的属性(并找到它),第二个将查找名为club_membership_id的属性但找不到它。所以关联方法永远不会奏效。

根据您的代码和问题判断,我怀疑您需要有人指出,但如果您的问题不清楚,请告诉我。