我正在尝试删除spark中的Content-Type标头。当我尝试使用null
或type
方法将其设置为header
时似乎是不可能的。它只是默认为text/html
。
答案 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