2

我响应一个流,我想将 headerName 添加fileName到响应的标题中。但是我不会写?

req.respond(CharContentType("text/csv") ~> ResponseBytes(xxxxx.usersExport))

我知道一个Header.scala https://github.com/unfiltered/unfiltered/blob/master/library/src/main/scala/response/headers.scala

4

2 回答 2

4

在当前版本的 unfiltered 中,只需使用以下代码进行响应:

Ok ~> ResponseHeader("Content-Type", Set("application/json"))
于 2013-07-02T13:13:53.757 回答
2

我自己找到了答案:

req.respond(new ResponseHeader("key","value") ~> CharContentType("text/csv") ~> ResponseBytes(xxxxx.usersExport))
于 2012-11-13T01:41:22.413 回答