이 글에서는 Ajax 요청 오류를 보고하고 PHP에서 도메인 간 요청을 활성화하는 방법을 소개합니다. 도움이 필요한 친구들이 모두 참고할 수 있기를 바랍니다.
Add
header("Access-Control-Allow-Origin: *");
특정 웹사이트만 통과하도록 설정하고 싶다면 이렇게 설정하시면 됩니다
header("Access - Control-Allow-Origin: http://test.com”); // test.com에서 시작된 도메인 간 요청을 허용하면 다른 요청은 통과되지 않습니다.
PHP 프레임워크인 경우 그렇지 않으면 오류가 보고됩니다.
<?php header('Access-Control-Allow-Origin: *'); $arr = [ array('id'=>1,'title'=>'one1'), array('id'=>2,'title'=>'one2'), array('id'=>3,'title'=>'one3'), array('id'=>4,'title'=>'one4'), ]; echo json_encode($arr); ?>
<script type="text/javascript" src="jq.js"></script> <script type="text/javascript"> $.ajax({ type:'post', url: 'http://127.0.0.1/demo1/api.php', contentType: "application/x-www-form-urlencoded", dataType: 'json', success: function(res){ console.log(res) } }) </script>
추천 학습: php 비디오 튜토리얼
위 내용은 Ajax 요청 오류, PHP에서 도메인 간 요청을 활성화하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!