我只是写这样的代码。当它的内容类型是“text / html”时,它可能不包括“charset = utf-8”并且我的页面被破坏了。
val feedUrl = "http://www.google.com"
def get(file:String) = Action.async {
WS.url(feedUrl+file).get().map { response =>
Ok(response.body) as response.header("content-type").getOrElse("*/*")
}
}
如何使用此代码添加charset选项?