Same Origin PolicyAjax request limits:Ajax can only send requests to its own serverThe same-origin policy is a security feature of the browser. Client scripts from different origins cannot read or write each other's resources without explicit authorization. For example, there is a website A and a website B. The HTML file in website A can only send Ajax requests to the server of website A. The HTML file in website B only sends Ajax requests to website B, but website A cannot send Ajax requests to website B. Similarly, website B cannot send Ajax requests to website A. Homologous:If two pages have the same protocol, domain name, and port, then the two pages belong to the same source. If just one of them is different, they are from different sources. http://www.example.com/dir/page.html
Purpose of the Same Origin Policy:
Not restricted by the same-origin policy: Links, redirects, and form submissions in pages are not subject to the same-origin policy, and the introduction of cross-domain resources is allowed. But js cannot read and write the loaded content. Such as Cross-domain issuesCross-domain: As long as there is a difference in the protocol, domain name, or port number, it is cross-domain Cross-domain reasons:The cross-domain problem comes from JavaScript's same-origin policy, which means that only when the protocol + host name + port number (if any) are the same, mutual access is allowed. In order to prevent the interface under a certain domain name from being illegally called by web pages under other domain names, the browser imposes security restrictions on JavaScript. That is to say, JavaScript can only access and operate resources under its own domain, and cannot access and operate resources under other domains. The cross-domain problem is for JS and Ajax, HTML itself does not have cross-domain issues. For example, a tag, script tag, and even form tag (which can directly send and receive data across domains) etc. Solve cross-domain issues: Refers to using a proxy server to accept connection requests on the Internet. The request is then forwarded to a server on the internal network. And return the results obtained from the server to the client requesting the connection on the Internet. At this point, the proxy server appears to the outside world as a reverse proxy server. JSONPSolved with JSONPjsonp is an abbreviation for JSON with padding. It does not belong to Ajax requests, but it can simulate Ajax requests. JSONP consists of two parts: callback function and data
Solution:Simple understanding: On the server side, the json data is used as a function parameter, filled into the function, and the function is called on the client to process the data The principle of JSONP to implement cross-domain requests is simply to dynamically create a Advantages and disadvantages of JSONP:advantage: Unlike Ajax requests implemented by the XMLHttpRequest object, which are restricted by the same-origin policy, it has better compatibility and can run in older browsers. It does not require XMLHttpRequest or ActiveX support and can return the result by calling callback after the request is completed. shortcoming: Only GET requests are supported, but other types of HTTP requests such as POST are not supported. Only cross-domain HTTP requests are supported. It does not solve the problem of how to make JavaScript calls between two pages on different domains JSONP code optimization:The client needs to pass the function name to the server Transform script requests into dynamic requests Encapsulate jsonp function to facilitate request sending Server-side code optimization res.jsonp method JSONP function encapsulation:function jsonp (options) { // Dynamically create script tag var script = document.createElement('script'); // Variable for concatenating strings var params = ''; for (var attr in options.data) { params += '&' + attr + '=' + options.data[attr]; } //myJsonp0124741 var fnName = 'myJsonp' + Math.random().toString().replace('.', ''); // Make it a global function window[fnName] = options.success; // Add src attribute to script tag script.src = options.url + '?callback=' + fnName + params; // Append the script tag to the page document.body.appendChild(script); // Add onload event to script tag script.onload = function () { document.body.removeChild(script); } } use: // Get the button var btn1 = document.getElementById('btn1'); var btn2 = document.getElementById('btn2'); // Add a click event to the button btn1.onclick = function () { jsonp({ // Request address url: 'http://localhost:3001/better', data: { name: 'lisi', age: 30 }, success: function (data) { console.log(123) console.log(data) } }) } btn2.onclick = function () { jsonp({ // Request address url: 'http://localhost:3001/better', success: function (data) { console.log(456789) console.log(data) } }) } CORSSolve with CORSCORS: The full name is Cross-origin resource sharing, which allows browsers to send Ajax requests to cross-domain servers, overcoming the limitation that Ajax can only be used with the same origin. //Set the server's response header information to achieve cross-domain res.setHeader("Access-Control-Allow-Origin", "*"); /* The asterisk indicates that all domains are acceptable, */ Cross-domain implementation in Express framework: Install the cross-domain module: Syntax: Import the cors module in the app.js file: Use the cross-domain module (in the app.js file): The above is a detailed analysis of the same-origin and cross-domain, jsonp (function encapsulation), and CORS principles. For more information about same-origin and cross-domain, jsonp (function encapsulation), and CORS, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Gearman + MySQL to achieve persistence operation example
>>: Detailed graphic tutorial on installing Ubuntu 20.04 dual system on Windows 10
Use JS to implement a random roll call system for...
[Usage and function of mysql cursor] example: The...
Table of contents 1. Install axios 2. Use of axio...
When using MYSQL, triggers are often used, but so...
In requireJS, there is a property called baseURL....
This article uses an example to describe how MySQ...
1Several common character sets In MySQL, the most...
The default_server directive of nginx can define ...
As shown below: CSS CodeCopy content to clipboard...
Problem/failure/scenario/requirement The hard dis...
max_allowed_packet is a parameter in MySQL that i...
Installation sequence rpm -ivh mysql-community-co...
*******************Introduction to HTML language (...
This article example shares the specific code of ...
Docker-compose deploys gitlab 1. Install Docker I...