3

我正在使用highvoltage gem静态页面服务。它的工作,但网址是丑陋的。目前url如下:

localhost:3000/pages/terms-and-conditions?locale=en

但我希望网址如下所示:

localhost:3000/en/pages/terms-and-conditions

在我的路线文件中,我写了

scope ":locale", locale: /en|bn|hi/ do
  match "pages/:id" => 'pages#show', :as => :page, :format => false
end

然后鉴于我写道:

<%=link_to "Terms & Conditions", page_path(:id=>'terms-and-conditions')%>

在我写的页面控制器中

  def show
    render params[:id]
  end

我现在能做些什么来解决这个问题

4

1 回答 1

1

我在 GitHub 上更新了问题: https ://github.com/thoughtbot/high_voltage/issues/144

以下是我在 GitHub 问题上发布的说明:

将前置过滤器添加到您的应用程序控制器

# app/controllers/application_controller.rb
before_action :set_locale

def set_locale
  I18n.locale = params[:locale] || I18n.default_locale
end

禁用默认的高压路由

# config/initializers/high_voltage.rb
HighVoltage.configure do |config|
  config.routes = false
end

使用区域设置路由文件设置嵌套 URL

# config/routes.rb
scope "/:locale", locale: /en|bn|hi/ do
  get "/pages/:id" => 'high_voltage/pages#show', :as => :page, :format => false
end

向网站添加页面

# app/views/pages/about.html.erb
<%= t 'hello' %>

确保有对应的语言环境文件

/config/locale/en.yml
/config/locale/bn.yml

最后一点是高压存在一个已知问题。

您需要指定这样的路线<%= link_to 'About Us', page_path(id: 'about') %>

如果您对此仍有疑问,请告诉我,我可以添加更多详细信息。

于 2014-07-21T17:15:28.353 回答