我有一个列表帖子,点击后会将url
显示为posts/this+is+the+title
。
执行此操作后,如何在控制器中捕获此数据以从数据库中获取数据?
<% @posts.each do |fq| %>
<%= link_to fq.title,fq%>
<p><%= fq.content %></p>
<hr />
<% end %>
假设标题是“Ruby on Rails”,id = 3 上面的代码生成了一个像这样的'localhost:3000 / posts / 3'的URL。但我希望链接为'localhost:3000 / posts / ruby + on + rails'