Home Web Front-end JS Tutorial The perfect solution to the ajax cross-domain problem

The perfect solution to the ajax cross-domain problem

Apr 24, 2018 pm 04:23 PM
ajax method solve

This time I will bring you the perfect solution to the ajax cross-domain problem. What are the precautions for solving the ajax cross-domain problem? The following is a practical case, let’s take a look.

Today I will record some issues about ajax cross-domain. in case for need.

Cross-domain

Same-origin policy restrictions

The same-origin policy prevents scripts loaded from one domain from obtaining or operating Document properties on another domain. That is, the domain of the requested URL must be the same as the domain of the current web page. This means that the browser isolates content from different sources to prevent operations between them.

Solution

Generally speaking, there are two common ways: one is from the server side, and the other is from the client's perspective. Set off. Both have advantages and disadvantages, and which method to use requires specific analysis.

  1. Server sets response header

  2. Server proxy

  3. The client uses a script callback mechanism.

Method 1

The Access-Control-Allow-Origin keyword

will take effect only if it is set on the server side. In other words, even if you use

1

<a href="https://www.php.cn/code/10550.html" target="_blank">xmlhttprequest.setHeaderREquest('xx','xx');</a>

on the

client, it will not have any effect.

Normal ajax request

Let’s simulate the case implementation of ajax non-cross-domain request.

test1.html

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

nbsp;html>

 

 

 <meta>

 <title>ajax 测试</title>

 

 

<input>

<p></p>

<script>

 var xhr = new XMLHttpRequest();

 var url = &#39;http://localhost/learn/ajax/test1.php&#39;;

 function crossDomainRequest() {

  document.getElementById(&#39;content&#39;).innerHTML = "<font color=&#39;red&#39;>loading...";

  // 延迟执行

  setTimeout(function () {

   if (xhr) {

    xhr.open(&#39;GEt&#39;, url, true);

    xhr.onreadystatechange = handle_response;

    xhr.send(null);

   } else {

    document.getElementById(&#39;content&#39;).innerText = "不能创建XMLHttpRequest对象";

   }

  }, 3000);

 }

 function handle_response() {

  var container = document.getElementById(&#39;content&#39;);

  if (xhr.readyState == 4) {

   if (xhr.status == 200 || xhr.status == 304) {

    container.innerHTML = xhr.responseText;

   } else {

    container.innerText = &#39;不能跨域请求&#39;;

   }

  }

 }

</script>

Copy after login
The content of test1.PHP in the same directory is as follows:

1

2

<?php echo "It Works.";

?>

Copy after login

The perfect solution to the ajax cross-domain problem

Cross-domain request

Just now, the HTML file and the PHP file were both under the Apache container, so there was no cross-domain situation. Now put the HTML file on the desktop and request the PHP data again, creating a situation like this A "cross-domain request".

Pay attention to the address bar information of the browser

When you visit again, you will find the following error message.

The perfect solution to the ajax cross-domain problem

In this case, a common operation is to set Access-Control-Allow-Origin.

Format: Access-Control-Allow-Origin: domain.com/xx/yy.*

If you know the client’s domain name or the fixed path of the request, it is best not to use wildcards method to further ensure security. If you are not sure, just use the * wildcard character.

When the back-end development language is PHP, you can set it like this at the beginning of the file:

1

header("Access-Control-Allow-Origin: *");

Copy after login
If it is an ASPX page, you need to set it like this (Java is similar):

1

Response.AddHeader("Access-Control-Allow-Origin""*");

Copy after login
At this time, visit the path just now again.

The perfect solution to the ajax cross-domain problem

ServerAgent mode

This method should be considered more commonly used and widely adopted One way. To say that being an agent is a bit too written, but in fact, it is just a messenger. Let’s give a small example:

Xiao Ming likes a girl named Xiaohong in Class 3, but is too embarrassed to ask for her QQ and WeChat ID. Then I asked Xiaolan, a girl from my class. Come and help yourself to get it. So Xiaolan is equivalent to an agent. Help Xiao Ming obtain Xiao Hong’s contact information that could not be obtained directly.

Let’s give an example to illustrate this problem.

Direct cross-domain request

Just modify the URL just now and let ajax directly request data from other websites.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

nbsp;html>

 

 

 <meta>

 <title>ajax 测试</title>

 

 

<input>

<p></p>

<script>

 var xhr = new XMLHttpRequest();

// var url = &#39;http://localhost/learn/ajax/test1.php&#39;;

  var url = &#39;http://api.qingyunke.com/api.php?key=free&appid=0&msg=%E5%93%92%E5%93%92&#39;;

 function crossDomainRequest() {

  document.getElementById(&#39;content&#39;).innerHTML = "<font color=&#39;red&#39;>loading...";

  // 延迟执行

  setTimeout(function () {

   if (xhr) {

    xhr.open(&#39;GEt&#39;, url, true);

    xhr.onreadystatechange = handle_response;

    xhr.send(null);

   } else {

    document.getElementById(&#39;content&#39;).innerText = "不能创建XMLHttpRequest对象";

   }

  }, 3000);

 }

 function handle_response() {

  var container = document.getElementById(&#39;content&#39;);

  if (xhr.readyState == 4) {

   if (xhr.status == 200 || xhr.status == 304) {

    container.innerHTML = xhr.responseText;

   } else {

    container.innerText = &#39;不能跨域请求&#39;;

   }

  }

 }

</script>

Copy after login
The results are as follows:

The perfect solution to the ajax cross-domain problem

Enable proxy mode

For the HTML page just now, we still use our own interface:

1

url = 'http://localhost/learn/ajax/test1.php';

Copy after login

具体如下:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

nbsp;html>

 

 

 <meta>

 <title>ajax 测试</title>

 

 

<input>

<p></p>

<script>

 var xhr = new XMLHttpRequest();

 var url = &#39;http://localhost/learn/ajax/test1.php&#39;;

//  var url = &#39;http://api.qingyunke.com/api.php?key=free&appid=0&msg=%E5%93%92%E5%93%92&#39;;

 function crossDomainRequest() {

  document.getElementById(&#39;content&#39;).innerHTML = "<font color=&#39;red&#39;>loading...";

  // 延迟执行

  setTimeout(function () {

   if (xhr) {

    xhr.open(&#39;GEt&#39;, url, true);

    xhr.onreadystatechange = handle_response;

    xhr.send(null);

   } else {

    document.getElementById(&#39;content&#39;).innerText = "不能创建XMLHttpRequest对象";

   }

  }, 3000);

 }

 function handle_response() {

  var container = document.getElementById(&#39;content&#39;);

  if (xhr.readyState == 4) {

   if (xhr.status == 200 || xhr.status == 304) {

    container.innerHTML = xhr.responseText;

   } else {

    container.innerText = &#39;不能跨域请求&#39;;

   }

  }

 }

</script>

Copy after login

然后对应的test1.php应该帮助我们实现数据请求这个过程,把“小红的联系方式”要到手,并返回给“小明”。

1

2

3

4

<?php $url = &#39;http://api.qingyunke.com/api.php?key=free&appid=0&msg=hello%20world.&#39;;

$result = file_get_contents($url);

echo $result;

?>

Copy after login

下面看下代码执行的结果。

The perfect solution to the ajax cross-domain problem

jsonp方式

JSONP(JSON with Padding) 灵感其实源于在HTML页面中script标签内容的加载,对于script的src属性对应的内容,浏览器总是会对其进行加载。于是:

克服该限制更理想方法是在 Web 页面中插入动态脚本元素,该页面源指向其他域中的服务 URL 并且在自身脚本中获取数据。脚本加载时它开始执行。该方法是可行的,因为同源策略不阻止动态脚本插入,并且将脚本看作是从提供 Web 页面的域上加载的。但如果该脚本尝试从另一个域上加载文档,就不会成功。

实现的思路就是:

在服务器端组装出客户端预置好的json数据,通过回调的方式传回给客户端。

原生实现

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

nbsp;html>

 

 

 <meta>

 <title>ajax 测试</title>

 <script></script>

 

 

<input>

<input>

<p></p>

<script>

function jsonpcallback(result) {

 for(var i in result) {

  alert(i+":"+result[i]);

 }

 }

 var JSONP = document.createElement("script");

 JSONP.type=&#39;text/javascript&#39;;

 JSONP.src=&#39;http://localhost/learn/ajax/test1.php?callback=jsonpcallback&#39;;

 document.getElementsByTagName(&#39;head&#39;)[0].appendChild(JSONP);

</script>

Copy after login

服务器端test1.php内容如下:

1

2

3

4

<?php $arr = [1,2,3,4,5,6];

$result = json_encode($arr);

echo "jsonpcallback(".$result.")";

?>

Copy after login

需要注意的是最后组装的返回值内容。

来看下最终的代码执行效果。

The perfect solution to the ajax cross-domain problem

JQuery方式实现

采用原生的JavaScript需要处理的事情还是蛮多的,下面为了简化操作,决定采用jQuery来代替一下。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

nbsp;html>

 

 

 <meta>

 <title>ajax 测试</title>

 <script></script>

 

 

<input>

<input>

<p></p>

<script>

 function later_action(msg) {

  var element = $("<p><font color=&#39;green&#39;>"+msg+"<br />");

  $("#content").append(element);

 }

 $("#btn").click(function(){

  // alert($("#talk").val());

  $.ajax({

  url: &#39;http://localhost/learn/ajax/test1.php&#39;,

  method: &#39;post&#39;,

  dataType: &#39;jsonp&#39;,

  data: {"talk": $("#talk").val()},

  jsonp: &#39;callback&#39;,

  success: function(callback){

   console.log(callback.content);

   later_action(callback.content);

  },

  error: function(err){

   console.log(JSON.stringify(err));

  },

 });

 });

</script>

Copy after login

相应的,test1.php为了配合客户端聊天的需求,也稍微做了点改变。

1

2

3

4

5

6

7

8

<?php $requestparam = isset($_GET[&#39;callback&#39;])?$_GET[&#39;callback&#39;]:&#39;callback&#39;;

// 青云志聊天机器人接口: http://api.qingyunke.com/api.php?key=free&appid=0&msg=hello

// 接收来自客户端的请求内容

$talk = $_REQUEST[&#39;talk&#39;];

$result = file_get_contents("http://api.qingyunke.com/api.php?key=free&appid=0&msg=$talk");

// 拼接一些字符串

echo $requestparam . "($result)";

?>

Copy after login

最后来查看一下跨域的效果吧。

JSONP 跨域实现聊天应用

总结

至此,关于简单的ajax跨域问题,就算是解决的差不多了。对我个人而言,对于这三种方式有一点点自己的看法。

  1. 服务器设置Access-Control-Allow-Origin的方式适合信用度高的小型应用或者个人应用。

  2. 代理模式则比较适合大型应用的处理。但是需要一个统一的规范,这样管理和维护起来都会比较方便。

  3. JSONP方式感觉还是比较鸡肋的(有可能是我经验还不足,没认识到这个方式的优点吧(⊙﹏⊙)b)。自己玩玩知道有这么个东西好了。维护起来实在是优点麻烦。

相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!

推荐阅读:

详细解析JS中Ajax的使用技巧

JQuery调用Ajax加载图片

The above is the detailed content of The perfect solution to the ajax cross-domain problem. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Five tips to teach you how to solve the problem of Black Shark phone not turning on! Five tips to teach you how to solve the problem of Black Shark phone not turning on! Mar 24, 2024 pm 12:27 PM

As smartphone technology continues to develop, mobile phones play an increasingly important role in our daily lives. As a flagship phone focusing on gaming performance, the Black Shark phone is highly favored by players. However, sometimes we also face the situation that the Black Shark phone cannot be turned on. At this time, we need to take some measures to solve this problem. Next, let us share five tips to teach you how to solve the problem of Black Shark phone not turning on: Step 1: Check the battery power. First, make sure your Black Shark phone has enough power. It may be because the phone battery is exhausted

How to recover deleted contacts on WeChat (simple tutorial tells you how to recover deleted contacts) How to recover deleted contacts on WeChat (simple tutorial tells you how to recover deleted contacts) May 01, 2024 pm 12:01 PM

Unfortunately, people often delete certain contacts accidentally for some reasons. WeChat is a widely used social software. To help users solve this problem, this article will introduce how to retrieve deleted contacts in a simple way. 1. Understand the WeChat contact deletion mechanism. This provides us with the possibility to retrieve deleted contacts. The contact deletion mechanism in WeChat removes them from the address book, but does not delete them completely. 2. Use WeChat’s built-in “Contact Book Recovery” function. WeChat provides “Contact Book Recovery” to save time and energy. Users can quickly retrieve previously deleted contacts through this function. 3. Enter the WeChat settings page and click the lower right corner, open the WeChat application "Me" and click the settings icon in the upper right corner to enter the settings page.

How to write a novel in the Tomato Free Novel app. Share the tutorial on how to write a novel in Tomato Novel. How to write a novel in the Tomato Free Novel app. Share the tutorial on how to write a novel in Tomato Novel. Mar 28, 2024 pm 12:50 PM

Tomato Novel is a very popular novel reading software. We often have new novels and comics to read in Tomato Novel. Every novel and comic is very interesting. Many friends also want to write novels. Earn pocket money and edit the content of the novel you want to write into text. So how do we write the novel in it? My friends don’t know, so let’s go to this site together. Let’s take some time to look at an introduction to how to write a novel. Share the Tomato novel tutorial on how to write a novel. 1. First open the Tomato free novel app on your mobile phone and click on Personal Center - Writer Center. 2. Jump to the Tomato Writer Assistant page - click on Create a new book at the end of the novel.

How to solve the problem of automatically saving pictures when publishing on Xiaohongshu? Where is the automatically saved image when posting? How to solve the problem of automatically saving pictures when publishing on Xiaohongshu? Where is the automatically saved image when posting? Mar 22, 2024 am 08:06 AM

With the continuous development of social media, Xiaohongshu has become a platform for more and more young people to share their lives and discover beautiful things. Many users are troubled by auto-save issues when posting images. So, how to solve this problem? 1. How to solve the problem of automatically saving pictures when publishing on Xiaohongshu? 1. Clear the cache First, we can try to clear the cache data of Xiaohongshu. The steps are as follows: (1) Open Xiaohongshu and click the &quot;My&quot; button in the lower right corner; (2) On the personal center page, find &quot;Settings&quot; and click it; (3) Scroll down and find the &quot;Clear Cache&quot; option. Click OK. After clearing the cache, re-enter Xiaohongshu and try to post pictures to see if the automatic saving problem is solved. 2. Update the Xiaohongshu version to ensure that your Xiaohongshu

The secret of hatching mobile dragon eggs is revealed (step by step to teach you how to successfully hatch mobile dragon eggs) The secret of hatching mobile dragon eggs is revealed (step by step to teach you how to successfully hatch mobile dragon eggs) May 04, 2024 pm 06:01 PM

Mobile games have become an integral part of people's lives with the development of technology. It has attracted the attention of many players with its cute dragon egg image and interesting hatching process, and one of the games that has attracted much attention is the mobile version of Dragon Egg. To help players better cultivate and grow their own dragons in the game, this article will introduce to you how to hatch dragon eggs in the mobile version. 1. Choose the appropriate type of dragon egg. Players need to carefully choose the type of dragon egg that they like and suit themselves, based on the different types of dragon egg attributes and abilities provided in the game. 2. Upgrade the level of the incubation machine. Players need to improve the level of the incubation machine by completing tasks and collecting props. The level of the incubation machine determines the hatching speed and hatching success rate. 3. Collect the resources required for hatching. Players need to be in the game

How to set font size on mobile phone (easily adjust font size on mobile phone) How to set font size on mobile phone (easily adjust font size on mobile phone) May 07, 2024 pm 03:34 PM

Setting font size has become an important personalization requirement as mobile phones become an important tool in people's daily lives. In order to meet the needs of different users, this article will introduce how to improve the mobile phone use experience and adjust the font size of the mobile phone through simple operations. Why do you need to adjust the font size of your mobile phone - Adjusting the font size can make the text clearer and easier to read - Suitable for the reading needs of users of different ages - Convenient for users with poor vision to use the font size setting function of the mobile phone system - How to enter the system settings interface - In Find and enter the "Display" option in the settings interface - find the "Font Size" option and adjust it. Adjust the font size with a third-party application - download and install an application that supports font size adjustment - open the application and enter the relevant settings interface - according to the individual

PHP and Ajax: Building an autocomplete suggestion engine PHP and Ajax: Building an autocomplete suggestion engine Jun 02, 2024 pm 08:39 PM

Build an autocomplete suggestion engine using PHP and Ajax: Server-side script: handles Ajax requests and returns suggestions (autocomplete.php). Client script: Send Ajax request and display suggestions (autocomplete.js). Practical case: Include script in HTML page and specify search-input element identifier.

Quickly master: How to open two WeChat accounts on Huawei mobile phones revealed! Quickly master: How to open two WeChat accounts on Huawei mobile phones revealed! Mar 23, 2024 am 10:42 AM

In today's society, mobile phones have become an indispensable part of our lives. As an important tool for our daily communication, work, and life, WeChat is often used. However, it may be necessary to separate two WeChat accounts when handling different transactions, which requires the mobile phone to support logging in to two WeChat accounts at the same time. As a well-known domestic brand, Huawei mobile phones are used by many people. So what is the method to open two WeChat accounts on Huawei mobile phones? Let’s reveal the secret of this method. First of all, you need to use two WeChat accounts at the same time on your Huawei mobile phone. The easiest way is to

See all articles