我在我的应用程序中添加了另一种语言。因此,我对静态页面使用以下路由:
scope "(:locale)", locale: /en|br/ do
get "static_pages/about"
match '/about', to: 'static_pages#about'
...
end
它工作正常,结果:
http://localhost:3000/en/about
但是,每次我在语言之间切换时,它都会返回完整路径而不是匹配:
http://localhost:3000/en/static_pages/about
我切换语言的方式:
#links
<%= link_to (image_tag '/england.png'), url_for( locale: 'en' ) %>
<%= link_to (image_tag '/brazil.png'), url_for( locale: 'br' ) %>
#application controller
before_filter :set_locale
def set_locale
I18n.locale = params[:locale]
end
def default_url_options(options={})
{ locale: I18n.locale }
end
这是一个问题,因为我在我的 CSS 文件中使用当前路径,所以每次我切换语言时都会弄乱布局:
<%= link_to (t 'nav.about'), about_path, class: current_p(about_path) %>
#helper
def current_p(path)
"current" if current_page?(path)
end
我试图找到一种match
在切换语言时返回路线的方法。任何的想法?