I have a model that uses a serialized column:
class Form < ActiveRecord::Base
serialize :options, Hash
end
Is there a way to make this serialization use JSON instead of YAML?
|
I have a model that uses a serialized column:
Is there a way to make this serialization use JSON instead of YAML? |
||||
|
|
Update See mid's high rated answer below for a much more appropriate Rails >= 3.1 answer. This is a great answer for Rails < 3.1. Probably this is what you're looking for.
Update 1) Install 'json' gem:
2) Create JsonWrapper class
3) Add model callbacks:
4) Test it!
PS:It's not quite DRY, but I did my best. If anyone can fix |
|||||||||||||
|
|
In Rails 3.1 you can just
Hope that helps |
|||||||||||||||||||
|
|
In Rails 3.1 you can use custom coders with
Hope this helps. References: Definition of The default YAML coder that ships with rails: https://github.com/rails/rails/blob/master/activerecord/lib/active_record/coders/yaml_column.rb And this is where the call to the |
|||||
|
|
My requirements didn't need a lot of code re-use at this stage, so my distilled code is a variation on the above answer:
Cheers, quite easy in the end! |
|||
|
|
|
The
where url is the attribute to be serialized using json and auth is the new method available on your model that saves its value in json format to the url attribute. (not fully tested yet but seems to be working) |
||||
|
|
|
A simpler solution is to use Here is the gist of it:
|
|||
|
|
I wrote my own YAML coder, that takes a default. Here is the class:
Since
I tried creating a new instance, loading an instance, and dumping an instance in IRB, and it all seemed to work properly. I wrote a blog post about it, too. |
|||||||||||
|
|
Aleran, have you used this method with Rails 3? I've somewhat got the same issue and I was heading towards serialized when I ran into this post by Michael Rykov, but commenting on his blog is not possible, or at least on that post. To my understanding he is saying that you do not need to define Settings class, however when I try this it keeps telling me that Setting is not defined. So I was just wondering if you have used it and what more should have been described? Thanks. |
|||
|