嵌套表单中的虚拟属性未记录

时间:2015-07-30 13:03:30

标签: ruby-on-rails nested-forms virtual-attribute

你会在我的代码中看到我在新动作的视图中有一个“has_many => belongs_to”模型关联和一个嵌套形式。

另外,我使用了Using two separate fields for the same parameter in a Rails form handler?

问题是“prix”属性(在“Projet”模型中)记录在数据库中,而不是“nom”属性(在“Activite”模型中)。

也许问题在于强大的参数,但我认为我的代码一切都很好...... 或者也许在我已经链接到的另一个Stackoverflow问题上找到的代码中。

我的代码中有法语单词:activite是activity,projet是project,nom是name,prix是price,非常容易:)

感谢您的帮助!

app / model / projet.rb:

class Projet < ActiveRecord::Base

    has_many :activites

    accepts_nested_attributes_for :activites,
    reject_if: lambda {|attributes| attributes['nom'].blank?}

end

app / models / activite.rb:

class Activite < ActiveRecord::Base

    belongs_to :projet

    def acttext=(value)
      @acttext = value if value
      prepare_act
    end

  def actselect=(value)
    @actselect = value if value
    prepare_act
  end

  def acttext
    @acttext || self.nom
  end

  def actselect
    @actselect || self.nom
  end

private 
  def prepare_act
    self.nom = acttext if acttext
    self.nom = actselect if actselect
  end

end

app / controllers / projets_controller.rb:

class ProjetsController < ApplicationController

    def new
        @projet = Projet.new
        @activites_options = Activite.pluck(:nom).uniq
        2.times { @projet.activites.new}
    end

    def create
        @projet = Projet.new(projet_params)

        if @projet.save
          redirect_to @projet
        else
          render 'new'
        end
    end

  private

    def projet_params
      params.require(:projet).permit(:prix, activites_attributes: [:id, :nom, :heures, :minutes, :acttext, :actselect])
    end
end

app / views / projets / new.html.erb:

<div>
    <%= form_for @projet do |f| %>    
    <%= f.label :prix %><br> 
    <%= f.text_area :prix %><br>
            <ul>
              <%= f.fields_for :activites do |activites_form| %>
                <li>
                  <%= activites_form.label :choisissez_un_type_dactivité %>
                  <%= activites_form.select :actselect, @activites_options, {include_blank: true} %>

                  <%= activites_form.label :ou_créez_en_un_nouveau %>
                  <%= activites_form.text_field :acttext %><br>

                  <%= activites_form.label :heures %>
                  <%= activites_form.text_field :heures %>

                  <%= activites_form.label :minutes %>
                  <%= activites_form.text_field :minutes %>
                </li>
                <br>
              <% end %>
            </ul>
    <p><%= f.submit "Créer le projet" %></p>
    <% end %>
    </div>

1 个答案:

答案 0 :(得分:0)

为了使虚拟属性起作用,您还需要定义一个setter和一个getter。这可以通过自己明确定义getter和setter,或使用attr_accessor来完成。

使用attr_accessor的示例:

class Activite < ActiveRecord::Base
  attr_accessor :nom
  ....

end

手动定义setter和getter的示例:

class Activite < ActiveRecord::Base
  ....

  def nom=(value)
    super
  end

  def nom
    @nom
  end
end

对于由于他们是法语而导致您的班级命名的第二个问题,您还需要在class_namehas_many上指定belongs_to选项以指定您的非英语类名如下:

class Projet < ActiveRecord::Base
  has_many :activites, class_name: 'Activite'
end

同样,对于Activite模型:

class Activite < ActiveRecord::Base
  belongs_to :projet, class_name: 'Projet'
end