gpt4 book ai didi

java - Play Framework 返回 415(不支持的媒体类型)

转载 作者:行者123 更新时间:2023-11-29 04:31:48 24 4
gpt4 key购买 nike

嗨,我的 play 框架应用程序返回

415 (Unsupported Media Type)

帖子:

 fetch(API_URL+'/process', {
method: "POST",
header: {"contentType": "application/json;charset=utf-8"},
body: JSON.stringify(newProcess)
});

post 方法的 Controller 代码如下所示:

 @BodyParser.Of(BodyParser.Json.class)
public Result createProcess(){

System.out.println("TEST");
System.out.println(request().body());

怎么了?

最佳答案

看来您设置的 header s不正确,试试这个:

fetch(API_URL + '/process', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(newProcess)
});

关于java - Play Framework 返回 415(不支持的媒体类型),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43494576/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com