이 Ajax 교차 도메인 액세스는 jsonp 방법을 사용하거나 Access-Control-Allow-Origin 설정을 사용하여 달성할 수 있습니다. 교차 도메인 액세스를 달성하기 위한 Access-Control-Allow-Origin 설정에 대해서는 이전에 작성한 기사를 참조하세요. ajax 설정 Access-Control-Allow" -Origin, Cross-Domain Access" 기사에서는 Ajax 크로스 도메인 액세스의 쿠키 손실 문제에 대한 해결책을 주로 소개하고 있습니다. 도움이 필요한 친구들이 참고할 수 있기를 바랍니다.
1.ajax 도메인 간 액세스, 쿠키 손실
먼저 두 개의 테스트 도메인 이름을 만듭니다
a.fdipzone.com을 클라이언트 도메인 이름으로
b.fdipzone.com을 서버 도메인 이름으로
테스트 코드
setcookie.PHP 서버 쿠키를 설정하는 데 사용됩니다
<?php setcookie('data', time(), time()+3600); ?>
server.php 클라이언트에서 요청하는 데 사용됩니다
<?php $name = isset($_POST['name'])? $_POST['name'] : ''; $ret = array( 'success' => true, 'name' => $name, 'cookie' => isset($_COOKIE['data'])? $_COOKIE['data'] : '' ); // 指定允许其他域名访问 header('Access-Control-Allow-Origin:http://a.fdipzone.com'); // 响应类型 header('Access-Control-Allow-Methods:POST'); // 响应头设置 header('Access-Control-Allow-Headers:x-requested-with,content-type'); header('content-type:application/json'); echo json_encode($ret); ?>
test.html 클라이언트 요청 페이지
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <script src="//code.jquery.com/jquery-1.11.0.min.js"></script> <title> ajax 跨域访问cookie丢失的解决方法 </title> </head> <body> <script type="text/javascript"> $(function(){ $.ajax({ url: 'http://b.fdipzone.com/server.php', // 跨域 dataType: 'json', type: 'post', data: {'name':'fdipzone'}, success:function(ret){ if(ret['success']==true){ alert('cookie:' + ret['cookie']); } } }); }) </script> </body> </html>
먼저 http://b.fdipzone.com/setcookie.php를 실행하여 생성합니다. 서비스 종료 쿠키.
그런 다음 http://a.fdipzone.com/test.html
을 실행하면
{"success":true,"name":"fdipzone","cookie":""}
출력이 쿠키를 얻지 못했습니다.
2. 솔루션
Client
요청 시 withCredentials 속성을 true로 설정하여
특정 요청이 자격 증명을 보내도록 지정할 수 있습니다. 서버가 자격 증명이 포함된 요청을 받으면 다음 HTTP 헤더로 응답합니다.
Server
헤더 설정
header("Access-Control-Allow-Credentials:true");
확인 정보가 포함된 요청 허용
test.html 다음과 같이 수정
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <script src="//code.jquery.com/jquery-1.11.0.min.js"></script> <title> ajax 跨域访问cookie丢失的解决方法 </title> </head> <body> <script type="text/javascript"> $(function(){ $.ajax({ url: 'http://b.fdipzone.com/server.php', // 跨域 xhrFields:{withCredentials: true}, // 发送凭据 dataType: 'json', type: 'post', data: {'name':'fdipzone'}, success:function(ret){ if(ret['success']==true){ alert('cookie:' + ret['cookie']); } } }); }) </script> </body> </html>
server.php 다음과 같이 수정
<?php $name = isset($_POST['name'])? $_POST['name'] : ''; $ret = array( 'success' => true, 'name' => $name, 'cookie' => isset($_COOKIE['data'])? $_COOKIE['data'] : '' ); // 指定允许其他域名访问 header('Access-Control-Allow-Origin:http://a.fdipzone.com'); // 响应类型 header('Access-Control-Allow-Methods:POST'); // 响应头设置 header('Access-Control-Allow-Headers:x-requested-with,content-type'); // 是否允许请求带有验证信息 header('Access-Control-Allow-Credentials:true'); header('content-type:application/json'); echo json_encode($ret); ?>
이전 단계를 따르면 요청이 반환됩니다
{"success":true,"name":"fdipzone","cookie":"1484558863"}
쿠키 가져오기 성공적으로
3. Notes
1. 클라이언트가 withCredentials 속성을 true로 설정했지만 서버가 Access-Control-Allow-Credentials:true를 설정하지 않은 경우 요청 중에 오류가 반환됩니다.
XMLHttpRequest cannot load http://b.fdipzone.com/server.php. Credentials flag is 'true', but the 'Access-Control-Allow-Credentials' header is ''. It must be 'true' to allow credentials. Origin 'http://a.fdipzone.com' is therefore not allowed access.
2. 서버 헤더에서 Access-Control-Allow-Credentials:true를 설정한 후에는 Access-Control-Allow-Origin을 *로 설정할 수 없으며 도메인 이름으로 설정해야 합니다. 그렇지 않으면 오류가 반환됩니다.
XMLHttpRequest cannot load http://b.fdipzone.com/server.php. A wildcard '*' cannot be used in the 'Access-Control-Allow-Origin' heade
Ajax 크로스 도메인 요청 시 COOKIE를 가져올 수 없는 문제에 대한 해결책을 살펴보겠습니다
기본 ajax 요청 방법:
var xhr = new XMLHttpRequest(); xhr.open("POST", "http://xxxx.com/demo/b/index.php", true); xhr.withCredentials = true; //支持跨域发送cookies xhr.send();
Jquery의 ajax 게시 방법 요청:
$.ajax({ type: "POST", url: "http://xxx.com/api/test", dataType: 'jsonp', xhrFields: { withCredentials: true }, crossDomain: true, success:function(){ }, error:function(){ } })
서버측 설정:
header("Access-Control-Allow-Credentials: true"); header("Access-Control-Allow-Origin: http://www.xxx.com");
관련 권장 사항:
JS는 Ajax 도메인 간 요청 플라스크 응답 콘텐츠를 구현합니다
Ajax 도메인 간 요청 COOKIE는 완벽한 솔루션을 제공할 수 없습니다
예를 통해 Ajax 도메인 간 요청의 원리를 자세히 설명합니다
위 내용은 Ajax 도메인 간 액세스_AJAX 관련 쿠키 손실 문제에 대한 솔루션의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!