Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3985298
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T05:52:24+00:00 2026-05-20T05:52:24+00:00

I facing this problem in may Rails 3.0.3 App, I think this is a

  • 0

I facing this problem in may Rails 3.0.3 App, I think this is a silly error but I can’t figure out why it’s happening, or in fact, I’m misunderstanding the ActiveRecord behavior and it’s is not really a error.

This is the scenario, I’ve three models:


class User < ActiveRecord::Base  
    devise :database_authenticatable, :registerable,
    :recoverable, :rememberable, :trackable, :validatable  
    has_many :addresses, :as => :addressable  
    accepts_nested_attributes_for :addresses  
end

class Address < ActiveRecord::Base  
  belongs_to :addressable, :polymorphic => true  
  belongs_to :address_base  
  accepts_nested_attributes_for :address_base  
end  

class AddressBase < ActiveRecord::Base  
  has_many :address  
end

If I try to instantiate a new User passing a hash parameters, by this way:


User.new({"addresses_attributes"=>  
    {"0"=>
        {"number"=>"10",
         "complement"=>"Next Starbucks",
         "address_base_attributes"=>
            {"city"=>"San Francisco",
             "zip_code"=>"00010",
             "district"=>"San Francisco",
             "id"=>"10",
             "street"=>"Market St.",
             "state"=>"CA"}
        }
    },
    "name"=>"Homer Simpson",
    "password_confirmation"=>"[FILTERED]",
    "document"=>"123321111",
    "password"=>"[FILTERED]",
    "email"=>"homer@simpson.com"
})

I face the error

Couldn't find AddressBase with ID=10 for Address with ID=

And it happens because that AddressBase already exists and the Address don’t, if I remove the AddressBase.id parameter of the hash everything works, but I not want it, because on this way, always will be created a new register for Address and AddressBase. My intention is reuse commons AddressBase’s, so the scenario of a new Address with an existent AddressBase will be necessary.

Now this is my doubts, I’m missing some parameter in the AddressBase hash?? Something like saying that the record already exist? Or it’s a problem with belongs_to and has_many associations of ActiveRecord?

Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T05:52:25+00:00Added an answer on May 20, 2026 at 5:52 am

    The problem is that you cannot mass assign the ID attribute in rails models (give the ID to the data hash you initialize the model with).

    It’s hard for me to reproduce you’re situation but if you know the model exist it’s easier to supply the id of address_base instead of a hash with all the data.

    For example:

    User.new({"addresses_attributes"=>  
      {"0"=>
          {"number"=>"10",
           "complement"=>"Next Starbucks",
           "address_base_id" => 10}
      },
      "name"=>"Homer Simpson",
      "password_confirmation"=>"[FILTERED]",
      "document"=>"123321111",
      "password"=>"[FILTERED]",
      "email"=>"homer@simpson.com"
    

    })

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am facing an application that uses hashing, but I cannot still figure out
I'm facing a problem with IE6. I took the toggle function from this website
I think this may be a browser dependent question- Suppose I have 10 Javascript
I'm facing this strange problem. I'm trying to read a file that is located
I am facing problem with an Oracle Query in a .net 2.0 based windows
I am facing a problem with .NET generics. The thing I want to do
I am facing a problem. I would like to localize my action names in
I'm facing a real problem in understanding how to draw a variable diagram to
I'm facing a problem while unit testing my forms. The problem is that data
Im facing the problem during installation : >>setup configure Configuring HDBC-sqlite3-2.3.0.0... setup: Missing dependency

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.