문제 이해
새로운 AngularJS 사용자로서, $http 서비스를 사용하여 서버에 데이터를 보내는 동안 문제가 발생했습니다. 특히, URL 인코딩 형식으로 데이터를 전송하려고 할 때 문제가 발생했습니다.
해결책
이 문제를 해결하려면 데이터를 URL로 변환해야 합니다. JSON 문자열 대신 매개변수. Ben Nadel은 자신의 블로그에서 이에 대해 설명합니다.
By default, the $http service will transform the outgoing request by serializing the data as JSON and then posting it with the content-type, "application/json". When we want to post the value as a FORM post, we need to change the serialization algorithm and post the data with the content-type, "application/x-www-form-urlencoded".
예
다음은 $http를 사용하여 URL 인코딩된 양식 데이터를 게시하는 방법을 보여주는 예입니다.
$http({ method: 'POST', url: url, headers: {'Content-Type': 'application/x-www-form-urlencoded'}, transformRequest: function(obj) { var str = []; for(var p in obj) str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p])); return str.join("&"); }, data: {username: $scope.userName, password: $scope.password} }).then(function () {});
AngularJS v1.4 업데이트 및 나중에
AngularJS v1.4 이상의 경우 사용 가능한 새로운 서비스를 활용하여 동일한 결과를 얻을 수 있습니다.
$http({ method: 'POST', url: url, headers: {'Content-Type': 'application/x-www-form-urlencoded'}, transformRequest: $httpParamSerializer });
위 내용은 AngularJS의 $http 서비스를 사용하여 URL 인코딩된 양식 데이터를 게시하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!