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?
post_idmight be protected. Try adding it to theattr_accessiblein your comments model. – klump Apr 10 '12 at 0:20