Rails 5中的Polymorphic Associaton事务失败

时间:2017-07-01 20:34:51

标签: ruby-on-rails ruby-on-rails-5 polymorphic-associations

我无法将我的关联保存在localhost:3000/controller_name/new中。我认为这是由于belongs_to failing validation,但我不确定如何修复它(除了通过requires:false/optional: true删除关联,我不确定后果)。我在tutorial之后创建了我的关联,但它是以前版本的rails。

我有一个多态地址表,可以属于事件,企业,用户等。我正在尝试将其添加到事件中。

地址迁移 - 您可以看到它引用addressable

class CreateAddresses < ActiveRecord::Migration[5.1]
  def change
    create_table :addresses do |t|     
      t.string :address

      t.decimal :latitude,  null: false, precision: 10, scale: 6, index: true
      t.decimal :longitude, null: false, precision: 10, scale: 6, index: true

      t.references :addressable, polymorphic: true, index: true 
    end
  end
end

地址模型:

class Address < ApplicationRecord
    belongs_to :addressable, polymorphic: true
end

活动模式:

class Event < ApplicationRecord
    has_one :address, as: :addressable
    accepts_nested_attributes_for :address
end

事件控制器:

class EventsController < ApplicationController
  #...stuff...

  # GET /events/new
  def new
    @event = Event.new
    @event.address = @event.build_address
    #@event.address = Address.new(addressable: @event)
    #@event.address = @event.create_address
    #@event.address =  @addressable.User.new
  end

  #...stuff...

您可以看到我尝试了多种方法来创建活动的地址,他们主要创建以下项目,使用addressable导致Nil崩溃的项目。

#<Address id: nil, address: nil, latitude: nil, longitude: nil, addressable_type: "Event", addressable_id: nil>

事件表单(使用Simple_form gem):

<%= simple_form_for @event do |f| %>
  <%= f.input :name %>
  <%= f.input :description %>

  <%= f.simple_fields_for :address do |address| %>
    <%= render :partial => 'shared/address/form', :locals => {:f => address} %>
  <% end %>

  <%= f.button :submit %>
<% end %>

地址表格部分:

<!-- Google Maps Must be loaded -->
<% content_for :head do %>
    <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCMh8-5D3mJSXspmJrhSTtt0ToGiA-JLBc&libraries=places"></script>
<% end %>

<div id="map"></div>

<%= f.input :address %>
<%= f.input :latitude %>
<%= f.input :longitude %>

表单渲染正常。当我试图保存时,我得到了

Started POST "/events" for 127.0.0.1 at 2017-07-01 16:06:23 -0400
Processing by EventsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"R0zlSs3UUNV3x8sQn5ocmE4jP12uOsFza7FezBAuhP4sw2MhF1OhixF8sAfDsLpfMEX7x5rhJ9HZfbKna8ncEA==", "event"=>{"name"=>"asd", "description"
=>"asd", "address_attributes"=>{"address"=>"asd", "latitude"=>"1", "longitude"=>"1"}}, "commit"=>"Create Event"}
   (0.1ms)  begin transaction
   (0.1ms)  rollback transaction

我保持在new页面上。如果我将byebug插入create并打印出@event.errors,则会显示:

#<ActiveModel::Errors:0x007fb29c34a9a8 @base=#<Event id: nil, name: "asd", description: "asd", min_users: nil, max_users: nil, start_time: nil, recurring: nil, created_at: nil, upd
ated_at: nil>, @messages={:"address.addressable"=>["must exist"]}, @details={:"address.addressable"=>[{:error=>:blank}]}>

如何创建address.addressable?如某些SO答案所示,关闭需求验证的后果是什么?

2 个答案:

答案 0 :(得分:1)

运行rake db:schema:dump,然后检查db / schema.rb中的文件,确保你有2个字段如下 * t.integer:addressable_id, * t.string:addressable_type 有关Activerecord Polymorphic Associations的更多详细信息,如果您的架构有问题,那么您可以按照以下方式运行迁移

t.references :addressable, polymorphic: true, index: true

由于事件通过多态关联有很多地址,因此您可以使用this link来创建地址 以下是示例代码

@address = @event.addresses.build(attributes = {}, ...)

你可以使用@address而不是@ event.address

答案 1 :(得分:0)

发现了这些问题,写了一篇blog post深入讨论这个问题。基本上我遇到了两个不同的问题

1.我收到的错误 - "address.addressable"=>["must exist"]。 address.addressable是'父'表的元组ID。就我而言,它是事件ID。当我们尝试将其保存在控制器的create函数中时,此错误试图告诉我新地址中缺少此外键。就像我在问题中所说的那样,你可以设置optional:true来忽略这个问题,并且在保存事件后它会以某种方式神奇地填充。或者您可以在保存之前在创建功能中手动分配它。

def create
  @event = Event.new(event_params)
  @event.address.addressable = @event #<<<<<<<<<<< manually assign address.addressable
  respond_to do |format|
    if @event.save #Saves the event. Addressable has something to reference now, but validation does not know this in time
      format.html { redirect_to @event, notice: 'Event was successfully created.' }
      format.json { render :show, status: :created, location: @event }
    else
      #dont forget to remove the 'byebug' that was here
      format.html { render :new }
      format.json { render json: @event.errors, status: :unprocessable_entity }
    end
  end
end

2.Event ID是一个字符串。在我的地址迁移中,我使用的是t.references :addressable, polymorphic: true, index: true,它是整数类型的addressable_id的别名。我需要更改我的迁移以使用字符串ID - 因此请删除references行并将其添加到其中。

t.string :addressable_id, index: true
t.string :addressable_type, index: true

博客文章略微详细介绍了这一点。