我想知道如何将 .txt 文件链接到 .js javascript 文件?我尝试了这个,但它不起作用: var i = `....file`; (function(){ window.onload = (event) =>{ document.getElementById('javascriptFile') .addEventListener('load', function() { var fr = this.fileData(); console.log(fr); }) } })
1 回答
郎朗坤
TA贡献1921条经验 获得超9个赞
如果您不使用像 webpack 这样具有加载器来接受 txt 文件的工具,您可以使用 XHR 直接获取文本文件
fetch('file.txt')
.then(response => response.text())
.then(data => {
console.log(data);
//filedata
});
添加回答
举报
0/150
提交
取消