旁邊的事實,可訪問性標準阻止指向當前頁面的鏈接使用 ,我應該如何 重構以下視圖代碼?haml視圖內的重構條件
#navigation
%ul.tabbed
- if current_page?(new_profile_path)
%li{:class => "current_page_item"}
= link_to t("new_profile"), new_profile_path
- else
%li
= link_to t("new_profile"), new_profile_path
- if current_page?(profiles_path)
%li{:class => "current_page_item"}
= link_to t("profiles"), profiles_path
- else
%li
= link_to t("profiles"), profiles_path
...
謝謝。
優秀!謝謝! P.S .:我想我可以放棄最後的回報,不是嗎? – user167267 2009-09-03 16:20:05
這是真的;我添加了它與另一個'return'對稱,並強調hash是作爲返回值存在的。 – 2009-09-15 09:56:42