I have been following the mongoid railscast and I am facing a multi parameter attributes problem when i add a new field field :published_on, :type => Date

Article.find("4da14b1447640b14eb000002").published_on 
=> nil

but with Article.find('4da14b1447640b14eb000002')

=> published_on: nil, published_on(1i): "2011", published_on(2i): "6", published_on(3i): "10"

How do i get the desire output?

i know there is a temporary solution https://gist.github.com/315227

but the issue of this problem is closed and I have the latest 2.0.1 mongoid gem and yet the problem occur.

link|improve this question

feedback

1 Answer

up vote 14 down vote accepted

Modify your Article class so it looks like the one below.

class Article
  include Mongoid::Document
  include Mongoid::MultiParameterAttributes

  ...
end
link|improve this answer
it is still the same ruby-1.9.2-p136 :002 > Article.first.published_on => nil – wizztjh Apr 11 '11 at 6:55
1  
Existing articles need to be updated. Have you tried to create a new article and see if it works ? – zaiste Apr 11 '11 at 11:12
1  
yup , I have created a new one and it works , thanks zaiste – wizztjh Apr 12 '11 at 3:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.