search
HomeWeb Front-endJS TutorialJavascript cross-domain access solution_javascript skills

There are two types of situations here:
1. Access to pages between subdomains based on the same parent domain; see the following three domain domains: taobao.com, jipiao.taobao.com, promotion.taobao.com; they have the same The parent domain is taobao.com.
2. Access between pages based on different parent domains; see the following three domain domains: taobao.com, baidu.com, sina.com.cn; they have different parent domains.

The solutions to solve the cross-domain problem between them are:
Option 1: Server Proxy
The page JS of domain A needs to access the link under domain B to obtain data , this solution establishes a Proxy program on the server side of domain A (it may be any server program such as ASP, servlet, etc.). The page JS of domain A directly calls the Proxy program under this domain. The proxy program is responsible for sending the request to domain B. link and obtain the data, and finally return the data to the page JS for use through Proxy.
The access process is: JS under domain A --> Proxy under domain A -- > Link under domain B
Example:
Step 1:
Domain A: http://Jipiao.taobao.com/test.htm
javascript script on the page:

Copy code The code is as follows:



Step 2:
Complete the Proxy program of the domain A server (assumed to be a servlet here), the pseudo code is as follows:
Copy code The code is as follows:

Public class Proxy extends….{
..doGet(…… ..){
HttpClient client=……;
GetMethod get=new GetMethod("www.baidu.com/xxxxx.do"); //Access the link to domain B
int statusCode = client. executeMethod(get);
if (statusCode != HttpStatus.SC_OK) {
byte[] responseBody = get.getResponseBody();
String res=new String(responseBody);
Httpresponse.getWriter ().write(res);//Return data to domain A
}
}
}

Option 2: Through Script tag:
in domain A Write an empty Script tag in the head of the page http://Jipiao.taobao.com/test.htm:
Copy code The code is as follows:









Note: This solution requires domain B to be returned The data must be in a legal JSON format or a JS file format; for example, the data format returned by domain B is as follows:
Var remote={test:'hello'};
Var f=[2,1];

Option 3: Hide iframe and share domain:
Write a hidden iframe on the domain A page http://jipiao.taobao.com/yyyy.htm:
Copy code The code is as follows:










Note: The page http://promotion.taobao.com/xxxx.htm also needs to set document.domain="taobao.com" for this method to work.
The reason why this iframe method is not suitable for cross-domain between different parent domains is because setting document.domain can only be set to your own parent domain, not to other domains, such as: jiapiao.taobao. com can only set document.domain="taobao.com", not document.domain="baidu.com";
The three solutions listed here each have their own advantages and disadvantages:
The advantage of the Proxy solution is that it can be applied Used for almost all cross-domain access, and only needs to be developed in one domain, and the other domain can provide data in any type of format. The disadvantage is that this solution passes through an intermediate Proxy, so the delay may be slightly larger, and it will increase the load on the local server, and the development workload will also be slightly larger.
The script tag solution can be said to be very simple. It can be done without a few lines of code. However, it has strict requirements on the format of the data returned. It can only be data in Json format. If it is data in other formats, then this There is nothing you can do about it this way.
The method of hiding iframe is also very simple. It can handle any returned data format, but it is only applicable to cross-domain requests under the same parent domain, and requires other domains to cooperate in development, that is, document.domain needs to be set. .
For details of the original post: http://blog.csdn.net/lovingprince/archive/2008/09/20/2954675.aspx
---------------- -------------------------------------------------- ----------------
-------------------------------- -----------------------------------------------
Regarding the meaning of JS cross-domain access, I would like to add a few more points:
Cross-domain access, simply speaking, means that the javascript code of website A tries to access website B, including submitting content and obtaining content; for example, if you want to access the page from website A, Execute the JS object in another page in website B, or want to use JS in the page of website A to parse the dom element of a page in website B, etc.; the application scenario where this kind of cross-domain access problem occurs is usually in an iframe Embedding pages in different domains, or sending Ajax requests to different domains, etc.;
Due to security reasons, cross-domain access is prohibited by default by major browsers; however, browsers do not prohibit referencing JS from other domains in the page. file, and can freely execute the functions in the imported JS file; I personally think this is very important!
The judgment rule for whether it is cross-domain is to compare the three: domain name, protocol, and port; if one of the three is different, cross-domain problems will occur; the cross-domain problems we often talk about generally refer to different domain names. Because this scenario has the highest probability of occurring and there are some ways to solve it; such as the cross-domain problem of the second-level domain name under the taobao.com domain mentioned earlier;
The main domain is different, or the protocols are different (such as https and http) cross-domain problems (for example, *.taobao.com domain wants to access content in *.baidu.com domain), it is completely impossible to solve it from the Web side, and can only be solved through the server-side Proxy solution;
Common page control dom elements between different domains include:
window.location can be set, but cannot be read. Access to other location properties and methods is prohibited;
document.href can be set, but not read. Access to other document properties and methods is prohibited;
Statement
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
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft