gpt4 book ai didi

java spring boot HTTP POST 请求不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 13:39:23 25 4
gpt4 key购买 nike

对于我的应用程序,我正在编写一个 POST 请求以从复选框列表发送参数数组。它适用于 get 请求,但不适用于 post 请求。我的代码有什么错误。

我在客户端的代码,用于向服务器发送ajax请求。

$(".add").click(function(){

monitoring.length=0;
nonMonitoring.length=0;
$('.modal-body input:checked').each(function() {
monitoring.push($(this).val());
});

$('.addkeywords input:checked').each(function() {
nonMonitoring.push($(this).val());
});


// alert(monitoring[2]+ " " + nonMonitoring[2]);
var monitoringLength=monitoring.length;
var nonMonitoringLength=nonMonitoring.length;

$.ajax({
type : "POST",
url : '/rest/channelstats/my/rest/controller',
data : {
// monitoring : monitoring,
// nonMonitoring: nonMonitoring,
monitoringLength: monitoringLength,
nonMonitoringLength: nonMonitoringLength,

},
success : function(data) {

// var keywordsList=data
//console.log(keywordsList);
// htm = "" ;


}


});


})

我在服务器端的java代码。

@RequestMapping(value="/rest/channelstats/my/rest/controller",method = RequestMethod.POST)
public void monitorKeywords(@RequestParam(value="monitoringLength",required=true)int monitoringLength,@RequestParam(value="nonMonitoringLength",required=true)int nonMonitoringLength){
System.out.println("MonitoringLength =>" +monitoringLength);
System.out.println("NonMonitoringLength=>" +nonMonitoringLength);

}

}

它适用于 HTTP GET 请求,但不适用于 POST 请求。我应该如何解决这个问题?

最佳答案

根据您的jquery post请求,您应该使用DAO (Data Access Object)解析请求数据。所以你应该添加类 Request

public class Request {

private int monitoringLength;
private int nonMonitoringLength;

//getters and setters
}

并将 Controller 更改为

@RequestMapping(value="/rest/channelstats/my/rest/controller",method = RequestMethod.POST)
public void monitorKeywords(@RequestBody Request request){
System.out.println("MonitoringLength =>"+request.getMonitoringLength());
System.out.println("NonMonitoringLength=>"+request.getNonMonitoringLength());
}

关于java spring boot HTTP POST 请求不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31367704/

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