AngularJS http POST to Servlet

后端 未结 3 1146
被撕碎了的回忆
被撕碎了的回忆 2020-12-16 09:01

I went through a lot of StackOverflow answers and googled a lot but still could not find why my post request is not working.

This is my jsp:

3条回答
  •  眼角桃花
    2020-12-16 09:29

    i think you should be sending data as

    $http({
        method : 'POST',
        url : 'login',
        data : {data: $scope.user},
        headers: {
            'Content-Type': 'application/json'
        }
    }).success(function(data) {
        console.log(data);
    });
    

    pay attention to data : {data: $scope.user}

提交回复
热议问题