我的播放框架应用程序返回
415 (Unsupported Media Type)
发表:
fetch(API_URL+'/process', {
method: "POST",
header: {"contentType": "application/json;charset=utf-8"},
body: JSON.stringify(newProcess)
});
post post的控制器代码如下:
@BodyParser.Of(BodyParser.Json.class)
public Result createProcess(){
System.out.println("TEST");
System.out.println(request().body());
怎么了?
答案 0 :(得分:3)
您似乎设置了错误的标题 s ,请尝试以下操作:
fetch(API_URL + '/process', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(newProcess)
});