1

我試着去弄清楚一個最基本的功能,創建一個名爲路線,我可以加入我的看法和代碼,但我無法得到它的工作帶動態參數的命名路由?

match '/user/:username' => "profiles#show", :as => show_profile 

我如何將能夠在包括我視圖以下代碼:

show_profile_path 

,並將它連接到/用戶/用戶名(用戶登錄)使用 林設計和軌道3.2和搜索前期此

回答

2

嘗試:

link_to "cool profile", show_profile_path(username: @user.username) 

確保您有Profiles_controller#顯示

@user = User.where(username: params[:username]).first 
+0

還沒有試過這個,嚐嚐今天,看着運後軌的路由文檔可能應該工作,所以我將其標記corect正確的搜索方法回答 – Rubytastic 2012-02-06 07:05:32