我在向localhost上运行的Spring Rest服务实现post请求时遇到了一些困难。
现在请求和服务都工作,当前的问题是我一直收到同样的错误,说我的JSON不正确。
$scope.addComment = function(){
var url = "http://localhost:8080/evenement/"+evenementId+"/deelnemers/"+deelnemer.id+"/addComment";
$http.post(url, {"content" : $scope.data.comment, "author":"testUser"}).then(function(res){
$scope.response = res.data;
console.log(res.data);
});
};
我尝试删除引号,使用单引号并且不使用引号,正如在其他问题上回答同样的问题。
答案 0 :(得分:2)
错误消息告诉您它无法将响应解析为JSON。您的服务器未向此请求返回有效的JSON。