chrome 浏览器能否让本地的 html 通过 ajax 加载本地文件?
資深大佬 : cat 4
比如有一个 index.html
文件,其中有一段代码是 fetch('data.json')
加载同目录的 data.json
文件;
chrome 直接打开这个 index.html
(不使用 nginx 或其它 http server ),会加载失败:
Fetch API cannot load file:/// URL scheme must be "http" or "https" for CORS
改成 XMLHttpRequest
方式加载也是类似的错误;
还有什么办法可以加载本地文件吗,客户不想部署 http server,希望在本地直接打开页面展示数据结果
大佬有話說 (13)