Angular - (有效JSON)fromJSON - 位于0 {J}的JSON中的意外标记

时间:2016-08-10 06:55:01

标签: javascript angularjs json rest

我在向localhost上运行的Spring Rest服务实现post请求时遇到了一些困难。

现在请求和服务都工作,当前的问题是我一直收到同样的错误,说我的JSON不正确。

我用于创建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);
  });
};

我尝试删除引号,使用单引号并且不使用引号,正如在其他问题上回答同样的问题。

Request Payload as shown in Developer Console including errormessage.

1 个答案:

答案 0 :(得分:2)

错误消息告诉您它无法将响应解析为JSON。您的服务器未向此请求返回有效的JSON。