Simple_form和accepts_nested_attributes_for

时间:2019-02-27 16:41:17

标签: ruby-on-rails simple-form

我对RoR还是很陌生,所以如果我说不正确,请对不起。

我有这些模型。

class Course < ApplicationRecord
  has_many :frequencies, inverse_of: :course
  belongs_to :subject, optional: true
  validates :start_date, presence: true
end

class Frequency < ApplicationRecord
  belongs_to :user
  belongs_to :course
  validates :course, presence: true
  validates_presence_of :course
  accepts_nested_attributes_for :user, :course
  has_many_attached :docs
end

课程与频率之间的关系是1:N,但是最后我将其设为1:1(定义模型后情况发生了变化)。

这是视图 app / views / frequencies / show.html.haml

    = simple_form_for @frequency, :url => frequencies_update_path(:id => @frequency.id) do |f|
            .panel.panel-primary
              .panel-heading
                %h4.panel-title= t 'frequencies.upd_frequency'
              .panel-body
                = f.simple_fields_for :user  do |u|
                  .row
                    .col-md-4
                      = u.label t 'frequencies.first_name'
                    .col-md-4
                      = u.input :first_name, :label => false, :disabled => true, :input_html => {:id => 'first_name'}
                  .row
                    .col-md-4
                      = u.label t 'frequencies.last_name'
                    .col-md-4
                      = u.input :last_name, :label => false, :disabled => true, :input_html => {:id => 'last_name'}
                      -#= u.hidden_field :id, value: @user_id
            .panel.panel-primary
              .panel-heading
                %h4.panel-title= t 'frequencies.course'
              .panel-body
                = f.simple_fields_for :course  do |u|
                  .row
                    .col-md-4
                      = u.label t 'frequencies.course_start_date'
                    .col-md-4
                      = u.input :start_date, :label => false, :disabled => (@frequency.validated? ? true : false), :input_html => {:id => 'course_start_date'}
    .
    .
    .
    = f.submit t('button.save'), :class => 'btn btn-primary ' + (current_user.role == $admin_role && @frequency.validated? ? 'disabled' : '')
= link_to t('button.cancel'), request.referer.present? ? request.referer : frequencies_index_path, :class => 'btn btn-default'

这是 frequencies_controller.rb

的一部分
def update
    @frequency = Frequency.find params[:id]
    @course = Course.find @frequency.course_id
    if over_max_hours_in_a_day(frequency_params[:user_attributes][:id], @course)
        flash[:danger] = t('flash.max_hours')
        render :action => :show and return
    end
    if @course.update(frequency_params[:course_attributes])
      @frequency.docs.attach(frequency_params[:attach][:docs]) if (frequency_params[:attach].present? && frequency_params[:attach][:docs].present?)
      flash[:notice] = t('flash.upd')
      redirect_to :action => 'index' and return
    else
      flash[:danger] = @course.errors.full_messages.to_sentence
      render :action => :show and return
    end
  end


  def show
    @frequency = Frequency.find params[:id]
    @subjects = Subject.all
  end

我可以从相关频率的角度编辑课程,但是我有一些奇怪的行为:

  • 当我保存验证过程时发生,但我仅将错误消息作为即显消息而不在所涉及的字段下显示(在其他更简单的视图中,我也将消息显示在该字段下)
  • 当我编辑某些课程的字段时(从频率视图中),当我单击“保存”按钮后,它会调用更新操作,但是,如果运行在over_max_hours_in_a_day(如果有条件)内,则无法保持在同一视图上带有预编译的修改后字段(但是我在开始show动作时就加载了类似的字段)
  • 在上次失败的编辑后按“取消”按钮时,我将停留在同一页面上,而不是返回上一视图(索引视图)

我不确定这是否归因于belongs_to模型上的accepts_nested_attributes_for,因为我通常在has_many模型中看到它。

轨道5 5.2.2

simple_form 4.1.0

请,你能帮我吗?

谢谢。

1 个答案:

答案 0 :(得分:0)

  1. 根据视图(从显示/索引页面)分离逻辑。创建2种更新方法
  2. 如果发生错误,请再次渲染视图render :show OR render :index
  3. 我认为最好将over_max_hours_in_a_day的逻辑转移到模型中
  4. 对于取消按钮,请不要使用引荐来源网址,因为更新后它将无法使用。使用表单本地语言或其他方式传递确切的返回URL
  5. 如果您想处理高字段-必须使用表单参数在其上调用.update.save方法