我是 Rails 新手,现在正在学习路由,这就是我的routes.rb
:
match '/text' => 'text#index'
match '/text/:id' => 'text#show'
这是我的app/views/text/index.html.erb
:
<h1>Texts</h1>
<% @texts.each do |t| %>
<div><%= link_to t.title, text_path(t) %></div>
<% end %>
问题是当我点击链接时,它会将我重定向到“/text.1”而不是“/text/1”。谁能弄清楚为什么?
谢谢。