比如这么一段 html
<a href="" class="btn btn-primary"> <span class="glyphicon glyphicon-plus"></span> 添加用户 </a>
用 rails 的 link_to 怎么写?
先搜索。
https://www.google.com.hk/#hl=zh-CN&q=site:ruby-china.org+link_to
http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#method-i-link_to
<%= link_to(@profile) do %> <strong><%= @profile.name %></strong> -- <span>Check it out!</span> <% end %> # => <a href="/profiles/1"> <strong>David</strong> -- <span>Check it out!</span> </a>
#1 楼 @Rei #2 楼 @joseen 多谢!
#1 楼 @Rei <%= link_to(root_path, options = {remote: true}) do%> 这里面怎么加 class="btn btn-primary"样式?加到 html_options 里不管用啊?
<%= link_to root_path, remote: true, class: "btn btn-primary" do%>
http://apidock.com/rails/ActionView/Helpers/UrlHelper/link_to
#5 楼 @Rei 不知道为什么,刚才也这么是过,就报错了,复制您的就好了,可能是我粗心了。真是感激不尽!!!