我创建了一个名为sample.txt的示例文本文件,其文本行如下:
I am a sample text file
然后在相同的Visual Studio代码中,我有API.html文件:
var textButton = document.getElementById('getText');
textButton.addEventListener('click', getText);
function getText() {
fetch('sample.txt')
// Fetch returns a promise
.then(function(res) {
console.log(res);
})
}
当我运行它时,浏览器说由于答应拒绝而暂停。输入错误:无法提取