Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a two types of rails objects posts and comments. Let's say each post has_many comments, and each comment belongs_to a post.

When I construct my comment JSON string I do this:

{"id":0,"title":"something","body":"something","post_id":1}

but I get back

{"id":0,"title":"something","body":"something","post_id":NULL}

I am sending the POST json request to: /comments.json because in this case the Post object is a singleton.

Here are my routes:

  resources :posts
  resources :comments

Anybody know what I can fix here?

share|improve this question
2  
post_id might be protected. Try adding it to the attr_accessible in your comments model. – klump Apr 10 '12 at 0:20
3  
@klump That should probably be an answer. – tadman Apr 10 '12 at 2:26

1 Answer

up vote 2 down vote accepted

My guess is that you can not massasign the post_id.

You could allow massasignment just for the post_id by adding this line to your model:

attr_accessible :post_id

Check here for more information.

share|improve this answer
Thanks for this! – Andrew Lauer Barinov Apr 10 '12 at 3:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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