On May 25, 7:03 am, tonymocha <[email protected]> wrote: > Hi Joao, > > Is the same thing. Project ID and Tags leaves as nil for no reason. > Are there any warnings in the console ? This really does sound an awful lot like attr_protected or attr_accessible are being used without you knowing it.
Fred > On May 25, 4:22 am, Joao Silva <[email protected]> > wrote: > > > > > > > Hi Frederick, > > > How about : > > > article = Article.new(:title =>"halo world",:content=>"lorem ipsum", > > :tags=>"test,article,fun",:project_id=>"1") > > > This example can be found > > athttp://api.rubyonrails.org/classes/ActiveRecord/Base.html > > > Did it worked out? > > > On May 24, 9:11 pm, xeon <[email protected]> wrote: > > > > Thanks for reply Frederick. > > > > Is a new project. I didn't use any plugins. More funny thing is I > > > manually set the attributes without problem. > > > > Example: > > > article.project_id=1 > > > > It works. However, not for parsing by array. I have did a few project > > > before, this is the first time encounter this funny issue. I try this > > > on rails console too, it is the same result. > > > > On May 25, 2:49 am, Frederick Cheung <[email protected]> > > > wrote: > > > > > On May 24, 6:01 pm, tonymocha <[email protected]> wrote: > > > > > > Hi, > > > > > > I have come into an odd problem that I couldn't figure out why. > > > > > Basically, what I did is to save a record from the form, but there's > > > > > some field that parsed to the active record returns as nil. > > > > > > Example: > > > > > > article = Article.new({"title"=>"halo world","content"=>"lorem ipsum", > > > > > "tags"=>"test,article,fun","project_id"=>"1"}) > > > > > #<Article id:nil, title: "halo world",content:"lorem ipsum", tags:nil, > > > > > project_id:nil> > > > > > > I don't understand why tags and project_id is nil, while I supplied my > > > > > data. > > > > > Are you using attr_protected anywhere (or are any plugins calling it > > > > on your models) ? > > > > > Fred > > > > > -- > > > > You received this message because you are subscribed to the Google > > > > Groups "Ruby on Rails: Talk" group. > > > > To post to this group, send email to [email protected]. > > > > To unsubscribe from this group, send email to > > > > [email protected]. > > > > For more options, visit this group > > > > athttp://groups.google.com/group/rubyonrails-talk?hl=en. > > > > -- > > > You received this message because you are subscribed to the Google Groups > > > "Ruby on Rails: Talk" group. > > > To post to this group, send email to [email protected]. > > > To unsubscribe from this group, send email to > > > [email protected]. > > > For more options, visit this group > > > athttp://groups.google.com/group/rubyonrails-talk?hl=en. > > > -- > > You received this message because you are subscribed to the Google Groups > > "Ruby on Rails: Talk" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]. > > For more options, visit this group > > athttp://groups.google.com/group/rubyonrails-talk?hl=en. > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group > athttp://groups.google.com/group/rubyonrails-talk?hl=en. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

