basic concepts of rails

1. Add a basic href link ::with the uri pattern of routes ::

<a></a>

<a href ="" ></a>

<a href ="/articles/<%articles.id%>" ></a>

.....................................................................................................

2. Add a basic href link ::with the resources and prefix pattern of routes ::

<a></a>

<a href ="" ></a>

<a href ="article_path(article)" ></a>

.....................................................................................................

3. Add a basic link_to methods ::

<%= link_to %>

<%= link_to article.title,title %>

.....................................................................................................










Comments

Popular posts from this blog

Rails 7 Features :: Comparison with Rails 6 and Rails 5