【调试错误】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系统下找到小娜。
【调试错误】Access to XMLHttpRequest at file:E590/ceshi.json from origin null_第1张图片
第三步:输入Internet~~~找到IIS管理器
【调试错误】Access to XMLHttpRequest at file:E590/ceshi.json from origin null_第2张图片
第四步:右击网站-添加网站
【调试错误】Access to XMLHttpRequest at file:E590/ceshi.json from origin null_第3张图片
第五步:部署
【调试错误】Access to XMLHttpRequest at file:E590/ceshi.json from origin null_第4张图片
第六步:地址栏输入正确的路径
【调试错误】Access to XMLHttpRequest at file:E590/ceshi.json from origin null_第5张图片
正确路径:(和你本地直接打开是一样的,只是把前面的盘符换成localhost)
【调试错误】Access to XMLHttpRequest at file:E590/ceshi.json from origin null_第6张图片
或者:
【调试错误】Access to XMLHttpRequest at file:E590/ceshi.json from origin null_第7张图片
右击该页面,浏览。
【调试错误】Access to XMLHttpRequest at file:E590/ceshi.json from origin null_第8张图片
解决方式二:

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

你可能感兴趣的:(前端,谷歌调试bug,跨域问题)