使用 jquery 的独立 html 页面可在 chrome 浏览器中打开 .csv 文件

Standalone html page with jquery to open .csv file in chrome browser

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

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

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

jquery-1.4.2.min.js:130 Failed to load file:///C:/test/sample.csv: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.

除此之外,同样在Edge浏览器中也能正常打开。

当我通过传递 --allow-file-access-from-files

启动 chrome 浏览器时,我能够加载页面

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

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