Ajax 교차 도메인 액세스는 jsonp 방법을 사용하거나 Access-Control-Allow-Origin 설정을 사용하여 달성할 수 있습니다. 교차 도메인 액세스를 달성하기 위한 Access-Control-Allow-Origin 설정에 대해서는 "ajax" 전에 작성한 기사를 참조할 수 있습니다. Access-Control-Allow 설정 - Origin은 교차 도메인 액세스를 실현합니다》
먼저 두 개의 테스트 도메인 이름
a.fdipzone.com을 클라이언트 도메인 이름으로 생성합니다
b.fdipzone.com 서버로 도메인 이름
테스트 코드
setcookie.php는 서버 쿠키를 설정하는 데 사용됩니다.
<?phpsetcookie('data', time(), time()+3600);?>
server.php는 다음에서 요청하는 데 사용됩니다. the client
<?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 client end
<!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
Output
{"success":true,"name":"fdipzone","cookie":""}
쿠키를 가져오지 못했습니다.
클라이언트
특정 요청이 자격 증명을 보내도록 지정할 수 있도록 요청할 때 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"}
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.
XMLHttpRequest cannot load http://b.fdipzone.com/server.php. A wildcard '*' cannot be used in the 'Access-Control-Allow-Origin' header when the credentials flag is true. Origin 'http://a.fdipzone.com' is therefore not allowed access. The credentials mode of an XMLHttpRequest is controlled by the withCredentials attribute.
mysql의 key_len 계산 방법에 대한 설명 explain
curl을 사용하여 PHP를 통해 IP 및 소스 액세스를 시뮬레이션하는 방법
위 내용은 Ajax 도메인 간 액세스 시 쿠키 손실에 대한 솔루션에 대한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!