Unicode字符变成???在重定向中,在play2中

时间:2012-03-11 04:13:34

标签: redirect unicode playframework-2.0

这发生在最新的play2(RC3)中:

两个动作:

object Application extends Controller {
  def test = Action { Redirect(routes.Application.test1("中文") }
  def test1(message: String) = Action { Ok(message) }
}    

路线:

GET  /test              controllers.Application.test
GET  /test1/:title      controllers.Application.test1(title)

当我访问/test时,响应标题为:

303
Content-Length  0
Location    /test1/??

您可以看到unicode 中文变为??

这是一个错误,还是我错过了什么?

0 个答案:

没有答案