【调试错误】Access to XMLHttpRequest at file:E590/ceshi.json from origin null

一、跨域问题:

Access to XMLHttpRequest at ‘http://localhost:9090/guidance/findGuidancePage’ from origin ‘http://localhost:8000’ has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource.
解决方案:https://blog.csdn.net/OrangeChenZ/article/details/86468239

二、普通问题:

jquery-1.8.0.min.js:2
Access to XMLHttpRequest at ‘file:///%E8%B5%B5%E6%99%A8%E5%AD%90/ceshi.json’ from origin ‘null’ has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.

谷歌不允许这样访问。
本地部署网站web。

解决方式一:

将html页面部署到服务器再访问。

如何部署?

第一步

开启一下windows系统下的IIS服务,百度百科有教怎么开启。
地址:https://jingyan.baidu.com/article/fec7a1e5c7d71b1190b4e786.html

第二步
Win10系统下找到小娜。

第三步:输入Internet~~~找到IIS管理器

第四步:右击网站-添加网站

第五步:部署

第六步:地址栏输入正确的路径

正确路径:(和你本地直接打开是一样的,只是把前面的盘符换成localhost)

或者:

右击该页面,浏览。

解决方式二:

换Firefox试试看。
以上,结束。