如何在 Ruby 中建立两个模型之间的模型关联。或者如何从一个模型中获取数据并将其用于另一个模型?

Posted

技术标签:

【中文标题】如何在 Ruby 中建立两个模型之间的模型关联。或者如何从一个模型中获取数据并将其用于另一个模型?【英文标题】:How to make model associations between two models in Ruby. Or How to take data from one model and use it in another model? 【发布时间】:2019-02-27 08:32:24 【问题描述】:

所以我创建了两个模型,一个“课程”和一个带有脚手架的“部分”,并且需要部分在下拉菜单中显示课程,以反映在课程模型中创建的任何课程,并使用它在部分中创建。我已经能够获得显示从“课程”创建的课程的下拉菜单,但是当我创建新部分时,课程显示为空白。课程有名称、部门、编号和学分。部分有学期、编号、课程和房间号。

我修改为使下拉菜单是(在部分视图的_form.html.erb中)

  <div class="field">
  <%= form.label "Courses", class: 'courses'%>
  <%= form.collection_select(:section, Course.all, :id, :name) %>
  </div>

这给出了“课程必须存在”的错误

以前我有:

  <div class="field">
  <%= form.label "Courses", class: 'courses'%>
  <%= form.collection_select(:course_ids, Course.all, :id, :name) %>

这没有给出错误,并允许我创建一个部分,而无需将所选课程添加到部分数据库中。

https://api.rubyonrails.org/classes/ActionView/Helpers/FormOptionsHelper.html#method-i-collection_select

从阅读中可以看出:名称应该在课程的模型部分中定义,但是当我尝试时它会出错。我还意识到我没有将其设置为将课程录制到特定的部分 ID,这就是为什么在创建新部分时它不保存它的原因。我的问题是,我要添加或修改什么才能使其正常工作?使用集合选择是错误的吗?

编辑以包含sections_controller.rb

class SectionsController < ApplicationController
  before_action :set_section, only: [:show, :edit, :update, :destroy]

  # GET /sections
  # GET /sections.json
  def index
    @sections = Section.all
  end

  # GET /sections/1
  # GET /sections/1.json
  def show
  end

  # GET /sections/new
  def new
    @section = Section.new
  end

  # GET /sections/1/edit
  def edit
  end

  # POST /sections
  # POST /sections.json
  def create
    @section = Section.new(section_params)

    respond_to do |format|
      if @section.save
        format.html  redirect_to @section, notice: 'Section was successfully created.' 
        format.json  render :show, status: :created, location: @section 
      else
        format.html  render :new 
        format.json  render json: @section.errors, status: :unprocessable_entity 
      end
    end
  end

  # PATCH/PUT /sections/1
  # PATCH/PUT /sections/1.json
  def update
    respond_to do |format|
      if @section.update(section_params)
        format.html  redirect_to @section, notice: 'Section was successfully updated.' 
        format.json  render :show, status: :ok, location: @section 
      else
        format.html  render :edit 
        format.json  render json: @section.errors, status: :unprocessable_entity 
      end
    end
  end

  # DELETE /sections/1
  # DELETE /sections/1.json
  def destroy
    @section.destroy
    respond_to do |format|
      format.html  redirect_to sections_url, notice: 'Section was successfully destroyed.' 
      format.json  head :no_content 
    end
  end

  private
    # Use callbacks to share common setup or constraints between actions.
    def set_section
      @section = Section.find(params[:id])
    end

    # Never trust parameters from the scary internet, only allow the white list through.
    def section_params
      params.require(:section).permit(:semester, :number, :course, :room_number)
    end
end

我认为我需要以某种方式将它们与最后一部分联系起来:

 def section_params
          params.require(:section).permit(:semester, :number, :course, :room_number)

编辑: (来源:rubyisonrails.com) http://rubyisonrails.com/pictures/part2.PNG">

【问题讨论】:

用两个模型之间的模型关联更新您的问题。 还有你的sections_controller.rb 谢谢,对不起,我是 Ruby 的新手,已经完成了书中的示例,现在尝试不一步一步地做某事,只是卡在这部分 它们之间有什么关联? Sections 只需要阅读使用课程模型创建的课程。例如,Course 模型创建了一个名为 Math 101、Science 102 和 Art 103 的课程。部分模型需要能够显示一个下拉菜单,显示已创建的课程,例如 Math 101、Science 102 和 Art 103. 如果稍后创建新课程,那么如果要创建新部分或要编辑旧部分,这些将自动显示(在下拉菜单中)。我希望这是有道理的。 【参考方案1】:

首先,您应该在Section 模型中将courses 更改为coursebelongs_to 的关联名称应始终为单数

class Section < ApplicationRecord
  belongs_to :course #singular name
end

其次,您应该在sections 表中有 course_id 列而不是 course。您可以生成一个迁移来反映表中的这些更改

rails g migration modify_sections

上面的命令应该在db/migrate文件夹下生成一个类似xxxxxxxmodify_sections.rb的文件。打开文件并添加

def change
  add_column :sections, :course_id, :integer
  remove_column :sections, :course, :integer
end

然后做rake db:migrate

现在像下面这样更改collection_select

<%= form.collection_select(:course_id, Course.all, :id, :name) %>

并在sections_controller#create 中添加

@section.course_id = params[:section][:course_id]

respond_to do |format|之前

最后,将section_params方法中的course改为course_id

def section_params
  params.require(:section).permit(:semester, :number, :course_id, :room_number)
end

注意:

由于您对技术非常陌生,建议您关注Guides学习。

【讨论】:

谢谢。这使它起作用了,但是当我保存它时,它没有保存课程名称,例如“Course 2”,而是将其保存为“<0x00007fb760632990>

以上是关于如何在 Ruby 中建立两个模型之间的模型关联。或者如何从一个模型中获取数据并将其用于另一个模型?的主要内容,如果未能解决你的问题,请参考以下文章

如何在父应用程序模型和挂载引擎模型之间设置has_many关联?

Django之模型层-多表操作

任何人都可以仅使用 ForeignKey 在两个 django 模型之间建立多对多关系吗?

Rails:不使用参数时关联两个不同的模型[:id]

ActiveRecord & PHP:定义两个模型之间不同关联的最佳方式

在其他两个模型之间创建关联时传递用户 ID