Guest User

Untitled

a guest
May 27th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. ## router.rb
  2. Merb::Router.prepare do
  3. resources :posts do |posts|
  4. posts.resources :comments
  5. end
  6.  
  7. default_routes
  8. end
  9.  
  10. ## /views/posts/show.html.haml
  11. # ...
  12. # This form url becomes: /posts/:post_id/comments/new
  13. # What controller and action are expected?
  14. = form_for(@comment, :action => url(:new_post_comment, @post)) do
  15. %p= text_field :posted_by
  16. %p= text_area :body
  17. %p= submit "Add Comment"
  18. # ...
Add Comment
Please, Sign In to add comment