Spark:删除Content-Type标头

时间:2017-08-01 14:16:42

标签: java spark-framework

我正在尝试删除spark中的Content-Type标头。当我尝试使用nulltype方法将其设置为header时似乎是不可能的。它只是默认为text/html

1 个答案:

答案 0 :(得分:1)

要删除标头中的Content-Type值,请使用空字符串success: function(result) { var data = JSON.stringify(result); populate('#formSearch', data); } 设置响应类型。

这里是一个适用于Spark v2.6.0的代码示例:

response.type("")

Httpie命令输出(public class Main { public static void main(String[] args) { get("/hello", new Route() { @Override public Object handle(Request request, Response response) throws Exception { response.type(""); response.body("hello world"); return response; } }); } } ):

http 0.0.0.0:4567/hello