我正在使用 rails 国际化,所以我的 URL 看起来像这样:
http://localhost:3000/dashboard/index?locale=es
我有一个带有 get 方法的表单,它将雪人参数附加到 URL:
http://localhost:3000/dashboard/index?locale=es?utf8=%E2%9C%93&dateregistration=2013-06-20
反而:
http://localhost:3000/dashboard/index?locale=es&utf8=%E2%9C%93&dateregistration=2013-06-20
问题是,如果我重新加载位置(F5)......我观察到参数语言环境是:
p locale
:"es?utf8=V"
反而:
p locale
:es
所以 I18n 不能正常工作。
有什么想法或建议吗?
谢谢。