我有新闻控制器,新闻按年选择。
在 routes.rb 我有
get 'news' => 'pages#news'
get 'news/:year' =>'pages#news'
urlhttp://localhost:3000/news/2012
没问题,但是当我尝试创建链接时,它并不漂亮。
例如:= link_to year, news_path(year: 2012)
我看到http://localhost:3000/news?year=2012
了http://localhost:3000/news/2012
如何修复它?ps item 它是新闻控制器的模型