I'm trying to find the "best" way to set default values for objects in rails. Best I can think of is to set the default value in the "new" method in the controller. Anyone have any input on if this is acceptable or if there's a better way to do it?
feedback
|
|
"Correct" is a dangerous word in Ruby. There's usually more than one way to do anything. If you know you'll always want that default value for that column on that table, setting them in a DB migration file is the easiest way:
Because ActiveRecord autodiscovers your table and column properties, this will cause the same default to be set in any model using it in any standard Rails app. However, if you only want default values set in specific cases -- say, it's an inherited model that shares a table with some others -- then another elegant way is do it directly in your Rails code when the model object is created:
Then, when you do a | |||||||||||
feedback
|
|
First of all you can't overload Your best option is to put your defaults into your migration.
Second best is to place defaults into your model but this will only work with attributes that are initially nil. You may have trouble as I did with
You need the You need | |||||||||
feedback
|
|
If you are referring to ActiveRecord objects, you have (more than) two ways of doing this: 1. Use a :default parameter in the DBE.G.
More info here: http://api.rubyonrails.org/classes/ActiveRecord/Migration.html 2. Use a callbackE.G. More info here: http://api.rubyonrails.org/classes/ActiveRecord/Callbacks.html#M002147 | |||||
feedback
|
|
If you are just setting defaults for certain attributes of a database backed model I'd consider using sql default column values - can you clarify what types of defaults you are using? There are a number of approaches to handle it, this plugin looks like an interesting option. | |||||||
feedback
|
|
The suggestion to override new/initialize is probably incomplete. Rails will (frequently) call allocate for ActiveRecord objects, and calls to allocate won't result in calls to initialize. If you're talking about ActiveRecord objects, take a look at overriding after_initialize. These blog posts (not mine) are useful: Default values Default constructors not called [Edit: SFEley points out that Rails actually does look at the default in the database when it instantiates a new object in memory - I hadn't realized that.] | ||||
|
feedback
|
|
Based on SFEley's answer, here is an updated/fixed one for newer Rails versions:
| |||
|
feedback
|
|
i answered a similar question here.. a clean way to do this is using Rails attr_accessor_with_default
UPDATE attr_accessor_with_default has been deprecated in Rails 3.2.. you could do this instead with pure Ruby
| |||||
|
feedback
|
|
You can override the constructor for the ActiveRecord model. Like this:
| |||
|
feedback
|