0

我正在尝试在 chrome 浏览器中打开一个独立的 html 页面。

此 html 页面包含 jquery-1.4.2.min.js 和 jquery.csvToTable.js 以打开 csv 文件并在浏览器页面中显示表格。

当我尝试在 Chrome 浏览器中打开时,出现以下错误,

jquery-1.4.2.min.js:130 无法加载文件:///C:/test/sample.csv: 跨源请求仅支持协议方案:http、data、chrome、chrome-extension、https。

除了上述之外,在 Edge 浏览器中也可以正常打开。

4

1 回答 1

0

当我通过传递 --allow-file-access-from-files 启动 chrome 浏览器时,我能够加载页面

像这样 - chrome --allow-file-access-from-files file:///C:/test/index.html

但是还有其他方法可以在chrome浏览器中打开本地文件吗?

于 2018-04-05T04:08:39.890 回答