> 웹 프론트엔드 > JS 튜토리얼 > AngularJS의 $http 서비스를 사용하여 URL 인코딩된 양식 데이터를 게시하는 방법은 무엇입니까?

AngularJS의 $http 서비스를 사용하여 URL 인코딩된 양식 데이터를 게시하는 방법은 무엇입니까?

Linda Hamilton
풀어 주다: 2024-12-11 05:16:11
원래의
957명이 탐색했습니다.

How to POST URL-Encoded Form Data with AngularJS's $http Service?

AngularJS에서 $http를 사용하여 URL 인코딩 양식 데이터 게시

문제 이해

새로운 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿