我有一个 HTML 文件(假设“myHTML.html”)和一个 本地文本文件,我想从中加载内容并将其附加到 myHTML。
我的问题是,每当我尝试使用此代码时:
function readTextFile(file)
{
var rawFile = new XMLHttpRequest();
rawFile.open("GET", file, false);
rawFile.onreadystatechange = function ()
{
if(rawFile.readyState === 4)
{
if(rawFile.status === 200 || rawFile.status == 0)
{
var allText = rawFile.responseText;
alert(allText);
}
}
}
rawFile.send(null);
}
我在这里的几个线程中看到从文本文件本地读取,它适用于 VS-code 和 liveserver,但是当我直接用 chrome 打开 myHtml 而没有 VS-code 时,我收到错误消息:
"Uncaught DOMException: Failed to execute 'send' on 'XMLHttpRequest': Failed to load",
"Access to XMLHttpRequest from origin 'null' has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https"
"Failed to load resource: net::ERR_FAILED"
有没有人对此有任何解决方案?