AngularJS에서 $http를 사용하여 AJAX 요청을 수행하는 것은 일반적으로 수행되는 작업입니다. 그러나 jQuery를 사용하지 않고 URL로 인코딩된 양식 데이터를 제출하는 것은 초보자에게 어려울 수 있습니다.
실패한 접근 방식
데이터 사용과 같이 언급된 접근 방식: {username : $scope.userName, 비밀번호: $scope.password} 또는 매개변수: {username: $scope.userName, 비밀번호: $scope.password}, URL 형식의 데이터를 제대로 인코딩하지 않습니다.
올바른 솔루션
원하는 기능을 달성하기 위해 Angular의 $http 서비스는 이전에 사용자 정의 데이터 변환을 허용하는 변환 요청 함수를 제공합니다. 서버로 보냅니다.
$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 버전 1.4 이상에서는 URL 인코딩 매개변수용으로 특별히 설계된 새로운 서비스를 도입했습니다. 이러한 서비스를 사용하면 프로세스가 더욱 단순화될 수 있습니다.
$http({ method: 'POST', url: url, headers: {'Content-Type': 'application/x-www-form-urlencoded'}, transformRequest: angular.identity, params: {username: $scope.userName, password: $scope.password} }).then(function () {});
위 내용은 jQuery 없이 AngularJS의 $http로 URL 인코딩된 양식 데이터를 제출하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!