我嘗試使用Rails 3.2.21
練習#163 Self-Referential Association和精細差不多的工作,但我只能在URL地址欄中顯示如何從user_path(:current)獲取「http:// localhost:3000/users/current」?
http://localhost:3000/users/1
而不是
http://localhost:3000/users/current
。我閱讀和搜索幾乎所有的代碼,我只找到一個current
:
<%= link_to "View Profile", user_path(:current) %>。
我該怎麼辦?這是相對於Rails 3
?非常感謝!
謝謝!我忘了'to_param'的方法 – abelard2008