詳細文章:http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#method-i-link_to
參考文章:http://apidock.com/rails/v3.2.8/ActionView/Helpers/UrlHelper/link_to
link_to需要傳值時的寫法
<%= link_to "連結", products_path(:param1 => "value1", :param2 => "value2"), class: "color1" %>
link_to連結文字內容較複雜時的寫法
<%= link_to(product) do %>
<img src="images/<%= product.image_url %>" class="img-responsive" alt=""/>
<h3><%= product.title %></h3>
<h4>$<%= product.price %></h4>
<% end %>
此篇將會不定期的更新哦!