我有两种类型的rails对象帖子和评论。假设每个帖子has_many
发表评论,每条评论belongs_to
发布一条帖子。
当我构建我的评论JSON字符串时,我这样做:
{"id":0,"title":"something","body":"something","post_id":1}
但我回来了
{"id":0,"title":"something","body":"something","post_id":NULL}
我将POST json请求发送到:/comments.json
,因为在这种情况下,Post对象是一个单例。
以下是我的路线:
resources :posts
resources :comments
有人知道我能解决什么吗?
答案 0 :(得分:2)