(CORS) Cross-origin Resource Sharing Solution

Source: Internet
Author: User

Some accepted cross-origin resource access solutions when the XMLHTTPRequest object accesses cross-origin resources are called

(CORS) Cross-origin Resource Sharing Solution.

In IE8, CORS can be performed through xdomainrequest, while in other browsers, xhr objects can be used.

CORS.

The code is taken from the Javascript advanced programming Version 3:

1 function acorsrequest (method, URL) {2 3 var xhr = new XMLHttpRequest (); 4 5 If ('withcredentials 'in xhr) {6 // prepare the request for 7 xhr. open (method, URL, true); 8} else if (typeof xdomainrequest! = 'Undefined') {9 10 xhr = new xdomainrequest (); 11 12 xhr. open (method, URL); 13 14} else {15 xhr = NULL; 16} 17 18 return xhr; 19 20 21}

 

(CORS) Cross-origin Resource Sharing Solution

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.