DEV Community

danieloh
danieloh

Posted on

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) %> 

<form action="<%= movie_path(@the_movie.id) %>" method="post" data-turbo="false">
# 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
<a href="<%= new_movie_path %>">New movie</a>  becomes
<%= link_to "Add a new movie", new_movie_path %>



Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Eliminate Context Switching and Maximize Productivity

Pieces.app

Pieces Copilot is your personalized workflow assistant, working alongside your favorite apps. Ask questions about entire repositories, generate contextualized code, save and reuse useful snippets, and streamline your development process.

Learn more

👋 Kindness is contagious

Explore a trove of insights in this engaging article, celebrated within our welcoming DEV Community. Developers from every background are invited to join and enhance our shared wisdom.

A genuine "thank you" can truly uplift someone’s day. Feel free to express your gratitude in the comments below!

On DEV, our collective exchange of knowledge lightens the road ahead and strengthens our community bonds. Found something valuable here? A small thank you to the author can make a big difference.

Okay