0

しばらくこれに固執していましたが、ウィザードの宝石を使用して、テナントの属性をネストされた形式で保存しようとしています。属性は保存されていますが、データベースに nil が出力されています。それが宝石であるかどうかわからない理由を理解できないようです。それとも、モデルまたはコントローラーに明らかな何かが欠けています。

パラメーター

Parameters: {"utf8"=>"✓", "authenticity_token"=>"xPqiDsUpnuLHCSnU+XuAUce4b/cTnM/gv6T7wxdIz4g=", "property"=>{"tenants_attributes"=>{"0"=>{"title"=>"Mr", "firstname"=>"Foo", "surname"=>"bar", "dateofbirth(1i)"=>"2013", "dateofbirth(2i)"=>"7", "dateofbirth(3i)"=>"21", "telno"=>"01143268375", "contact_type"=>"foo", "email"=>"example@gmail.com"}}}, "commit"=>"Create Tenant", "property_id"=>"58"}

これは、テナント属性が nil であることを示すログです。

 INSERT INTO "tenants" ("contact_type", "created_at", "dateofbirth", "email", "firstname", "property_id", "surname", "telno", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)  [["contact_type", nil], ["created_at", Sun, 21 Jul 2013 10:53:00 UTC +00:00], ["dateofbirth", nil], ["email", nil], ["firstname", nil], ["property_id", nil], ["surname", nil], ["telno", nil], ["title", nil], ["updated_at", Sun, 21 Jul 2013 10:53:00 UTC +00:00]]

プロパティ/ビルドコントローラー

class Properties::BuildController < ApplicationController


    include Wicked::Wizard 
    steps :tenant

    def show
      @property = Property.find(params[:property_id])
      @tenant = @property.tenants.new
      render_wizard
    end

    def update
     @property = Property.find(params[:property_id])
         @tenants = Tenant.find(params[:tenant])
        case step
      when :tenant 
        if @tenants.update_attributes(params[:tenants])
         render_wizard @tenant
        else
         render :action => 'edit'
        end
    end
end

def create
    @tenant = Tenant.create
    if @tenant.save
        flash[:success] = "Tenant Added"
        redirect_to wizard_path(steps.first, :tenant_id => @tenant.id)
    else
        render 'edit'
    end
end

終わり

プロパティモデル

class Property < ActiveRecord::Base
  attr_accessible  :name, :address_attributes, :tenants_attributes
  belongs_to :user 

  has_one :address, :as => :addressable
  accepts_nested_attributes_for :address
  validates_associated :address

  has_many :tenants
  accepts_nested_attributes_for :tenants



  validates :name, presence: true,  length: { maximum: 200 }
  validates :address, presence: true
  validates :user_id, presence: true

end

テナント形態

<h2> Tenant Form</h2>


<%= simple_form_for @property, :url => url_for(:action => 'create', :controller =>   'properties/build'), :method => 'post' do |f| %>
<%= f.simple_fields_for :tenants do |f| %>
  <%= f.input :title %>
  <%= f.input :firstname %>
  <%= f.input :surname %>
  <%= f.input :dateofbirth %>
  <%= f.input :telno %>
  <%= f.input :contact_type %>
  <%= f.input :email %>
  <%= f.submit %>
<% end %>
4

1 に答える 1

0

ビューにいくつかのエラーがあります。まず、終了ステートメントがありません。次に、外部フォームと内部フォームに f を使用しているため、外部フォームを内部フォームでオーバーライドしています。次のようなことを試してください:

<%= simple_form_for @property, :url => url_for(:action => 'create', :controller =>   'properties/build'), :method => 'post' do |f| %>
  # Fields for property (f.input...)
  <%= f.simple_fields_for :tenants do |tenant| %>
    # Fields For tenant (tenant.input...)
  <% end %>
<% end %>

また、ここにエラーがあると思います

@tenant = Tenant.create
if @tenant.save
  flash[:success] = "Tenant Added"
  redirect_to wizard_path(steps.first, :tenant_id => @tenant.id)
else
  render 'edit'
end

を使用する場合は、 (新しいレコードを作成してデータベースに保存します。再度保存する必要はなく、レコードを作成するだけですが、手動で保存する必要があります)の代わりに、その前にif something.save使用する必要があります。something.newsomething.createcreatenew

おそらく次のようなものが必要です

@property = Property.new(params[:property])
if @property.save
  flash[:success] = "Tenant Added"
  redirect_to wizard_path(steps.first, :tenant_id => @tenant.id)
else
  render 'edit'
end
于 2013-07-21T11:53:44.060 に答える