0

在我的标题中,我有这个:

<%= link_to "My profile", current_user %>

反正有没有调用 (:subdomain => false) 或类似的东西,所以它会在子域中转义?我正在使用设计。

它在这些情况下完美运行:

<%= link_to 'About', about_url(:subdomain => false) %>

但是因为它没有“_path”或“_url”,所以我不断收到“错误数量的参数 1 for 0”错误。

谢谢你的帮助...

4

1 回答 1

0

您可以link_to使用user_url(current_user)助手而不是current_user快捷方式进行调用。

我想这会起作用:

<%= link_to "My profile", user_url(current_user, :subdomain => false) %>.

于 2012-12-19T15:14:25.720 回答