이번에는 Ajax 크로스 도메인 접속 중 쿠키가 손실되는 문제를 해결하는 방법을 알려드리겠습니다. Ajax 크로스 도메인 접속 중 쿠키가 손실되는 문제를 해결하기 위한
주의 사항은 무엇입니까? 실제 사례이므로 살펴보겠습니다.
ajax 교차 도메인 액세스는 jsonp 방법을 사용하거나 Access-Control-Allow-Origin 설정을 사용하여 달성할 수 있습니다. 교차 도메인 액세스를 달성하기 위한 Access-Control-Allow-Origin 설정에 대해서는 이전에 작성한 기사를 참조하세요. ajax 설정 Access-Control-Allow" -Origin은 도메인 간 액세스를 실현합니다》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. 솔루션
클라이언트
요청 시 withCredentials 속성을 true로 설정하세요
. 그러면 특정 요청이 자격 증명을 보내도록 지정할 수 있습니다. 서버가 자격 증명이 포함된 요청을 받으면 다음 HTTP 헤더로 응답합니다.
서버측헤더 설정
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"}
Get 쿠키가 성공적으로 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();
$.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");
이 기사의 사례를 읽으신 후 방법을 마스터하셨다고 생각합니다. 더 흥미로운 정보를 보려면 PHP 중국어 웹사이트의 다른 관련 기사를 주목하세요!
Ajax를 사용하여 등록 및 아바타 업로드 기능 구현
ajax를 사용하여 페이징 기술을 구현하는 세부 단계(코드 포함)
Ajax 요청에서 async:false 및 async:true 차이
위 내용은 Ajax 도메인 간 액세스 중 쿠키 손실 문제를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!