Helper Methods 1

Know to only refer to by :details (for url) will work if I upload this to mydomain (in route) get "/movies/:id" => "movies#show", as: :details # focus on the movie_path(@the_movie.id) #simplify render render template: "movies/show" render "movies/new" # can remove render altogether if the same as title (ie. def new) #replace a href New movie becomes

Mar 31, 2025 - 03:37
 0
Helper Methods 1

Know to only refer to by :details (for url)

  • will work if I upload this to mydomain
(in route)
get "/movies/:id" => "movies#show", as: :details

<%= details_path(42) %>
<%= details_url(42) %> 

# focus on the movie_path(@the_movie.id) #simplify render render template: "movies/show" render "movies/new" # can remove render altogether if the same as title (ie. def new) #replace a href New movie becomes <%= link_to "Add a new movie", new_movie_path %>