Preface Currently, the front-end solves cross-domain problems mainly through the configuration of webpack's devServer. But sometimes devServer is not configured in the development environment, and cross-domain is not set up in the backend. When debugging code locally in a project with separated front-end and back-end, cross-domain issues are often encountered. This article is mainly to supplement the previous article on cross-domain browser access solutions. Because the last setting of this article is about Chrome, the current setting does not work, so I updated the article and corrected it. Solution to the problem that --disable-web-security does not work The previous article provided the setting methods of --disable-web-security for Windows, Mac, Linux, etc., but the new version of Chrome has upgraded its security policy, and this opening method or the previous setting method is invalid. So how to solve it? 1. To set cross-domain, right-click the Chrome shortcut, click 'Properties', 'Shortcut', press the space at the end of the 'Target' path, and then add the following code: --args --disable-web-security --user-data-dir=D:\HaoroomsChromeUserData or --disable-web-security --user-data-dir=D:\HaoroomsChromeUserData D:\HaoroomsChromeUserData is a folder I found randomly. You can configure it at will. If you don’t write it like this, the new version of the browser may have problems with the settings not taking effect. This method is equivalent to the user creating a private Chrome browser on his own computer, and the settings and configurations in it are all private settings. At this time, find the chrome installation source directory and open chrome.exe. You will find that all the bookmarks, options, etc. configured in the private chrome are not in this chrome. Note: If you want to delete D:\HaoroomsChromeUserData, be sure to back up your bookmarks, account passwords, etc. first. Once deleted, it is equivalent to uninstalling the private Chrome in the personal computer, and no data will be retained 2. After the setting is successful, open the browser again and there will be a prompt: "You are using an unsupported command line flag: --disable-web-security, which may reduce stability and security" At this point, normal users can perform cross-domain access, such as local front-end projects, direct connection tests, or online environment interfaces (the premise is that the target environment has been logged in in the current browser and the cookies, session, and other information of the current account already exist) 3. Some users still cannot access the system. In this case, a yellow text will be displayed in the console.
At this time, the browser still restricts cross-domain access to cookies, so some people's computers still cannot use cross-domain. Solution: Enter in the address bar:
Search again:
Find 'SameSite by default cookies' and 'Cookies without SameSite must be secure'. There is a drop-down box behind it. Select 'disabled' for both options. The browser will prompt a red message: 'Warning: You are about to use an experimental feature! ' Choose to ignore the warning. At this time, the browser is the D:\HaoroomsChromeUserData we created locally. Click the Relaunch button in the lower right corner, the browser will automatically restart and keep all currently opened pages. Note: This mode is used for joint debugging. If you visit other shopping websites, it is recommended to use the chrome.exe in the chrome.exe installation source directory to avoid unnecessary trouble. Other systems: Mac is the same as Linux. The original command line does not work. A folder for storing data is also specified to achieve the cross-domain effect. Other solutions A temporary solution can be achieved by using a chrome plug-in. Search for Chrome extensions
After installing the plugin, read their documentation and set the address to be accessed across domains. This is the end of this article about how to set up the new version of Chrome browser to allow cross-domain implementation. For more relevant content about Chrome allowing cross-domain, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! |
<<: Detailed introduction to linux host name configuration
>>: A simple way to put HTML footer at the bottom of the page
Background: Linux server file upload and download...
For example, to query yesterday's newly regis...
Introduction During the work process, slow querie...
Original configuration: http { ...... limit_conn_...
1. Indexing principle Indexes are used to quickly...
Note: Currently, the more popular front-end frame...
In the field of design, there are different desig...
This article mainly introduces how to use the Rea...
Table of contents The node version does not corre...
Table of contents 1. Mysql data structure 2. The ...
Result:Implementation code: <!DOCTYPE html>...
1. Change password 1. Modify the password of ordi...
Table of contents Preface: System Requirements: I...
Table of contents Method 1 1. Configuration and i...
drop procedure sp_name// Before this, I have told...