Ajax Report 0 Error

Source: Internet
Author: User

I thought in the local test will not cross, the results check down is a cross-domain problem!!!!

Source: https://www.cnblogs.com/xiezn/p/5651093.html

This article implements cross-domain by setting up Access-control-allow-origin .

For example: The domain name of the client is client.runoob.com, and the requested domain name is server.runoob.com.

If you use AJAX access directly, you will get the following error:

XMLHttpRequest cannot load http://server.runoob.com/server.php. No ' Access-control-allow-origin ' header is present on the requested resource. Origin ' http://client.runoob.com ' is therefore not allowed access.

1. Allow single domain access

To specify a domain name (http://client.runoob.com) for cross-domain access, simply add the following code to the http://server.runoob.com/server.php file header:

Header(' access-control-allow-origin:http://client.runoob.com ');
2. Allow multiple domain names to be accessed
To specify multiple domain names (http://client1.runoob.com, http://client2.runoob.com, and so on) for cross-domain access, simply add the following code to the http://server.runoob.com/server.php file header:
$origin=Isset($_server[' Http_origin '])?$_server[' Http_origin '] : ; $allow _origin Span class= "pun" >= Array ( ,  ' http://client2.runoob.com '  );  if (in_array (  $origin , $allow _origin Header ( ' access-control-allow-origin: '  $origin );  } 
/span>
3. Allow all domain names to access

To allow all domain access, simply add the following code to the http://server.runoob.com/server.php file header:

Header(' access-control-allow-origin:* ');  

Ajax Report 0 Error

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.