Table 中的聚合 Rails 中的 Ruby 中的继承

Aggregation in Single Table Inheritance in Ruby on Rails

我正在 this guide 之后的 Rails 中研究单一 Table 继承。我正在使用的 类 如下:

超类: 文章
子类: 教程、项目、想法
全部包含'Comments'

所以我能够显示所有这些文章并按类型过滤它们。但是,我在创建子类的新对象时遇到了麻烦,例如 Tutorial。

这里是相关代码的片段:

#articles_controller.rb
class ArticlesController < ApplicationController

def type 
    Article.types.include?(params[:type]) ? params[:type] : "Article"
end

def type_class 
    type.constantize 
end

def index
    puts "The type is: " + type
    #@articles = Article.all
    @articles = type_class.all
    @type = type
end

def new
    @article = type_class.new
end

def edit
    @article = type_class.find(params[:id])
end

def show
    @article = type_class.find(params[:id])
end



#show.html.erb
<p>
<strong>Title:</strong>
<%= @article.title %>
</p>

<p>
<strong>Text:</strong>
<%= @article.text %>
</p>

<div id="comments">
<h2>Comments</h2>
<%= render @article.comments %>
</div>

<h2>Add a comment:</h2>
<%= render 'comments/form' %>


<%= link_to 'Edit', edit_article_path(@article) %>
<%= link_to 'Back', articles_path %>

这是我的文章模型:

class Article < ActiveRecord::Base

has_many :comments, dependent: :destroy
validates :title, presence: true,
length: { minimum: 5 }

scope :projects, -> { where(type: 'Project')}
scope :thoughts, -> { where(type: 'Thought')}
scope :tutorials, -> { where(type: 'Tutorial')}

self.inheritance_column = :type

def self.types
    %w(Tutorial Project Thought)
end

end

我能够创建一个类型为 Tutorial 的新 Article 对象,但是在呈现相关评论时,控制台显示:

Mysql2::Error: Unknown column 'comments.tutorial_id' in 'where clause': SELECT `comments`.* FROM `comments` WHERE `comments`.`tutorial_id` = 29

我很困惑为什么 sql 查询包含 tutorial_id 而不是普通 ID。关于如何改变它有什么建议吗?

type 由 rails 保留,尝试将该列的名称更改为 kindtype_of,看看是否可以修复错误