I have blog model. Blog has_many comments. I have created all the CRUD related to the blog. The comments doesnt have a page on its own. On the blog page, there could be text area and on the entering the comment, it would be saved thru ajax. But normally when a new page is created a new object is sent from the controller, so should i create a comment object and send it thru Blog's new action like this
def new
@comment = Comment.new
@blog = Blog.new
end
Or should i just access the comment objects present in the blog while creating the view
<form_remote_for @blog.comments>
Which is the right way of doing this? Is there any better solution