我正在尝试添加一个文本文件(不是本地文件,而是URL文本文件),并用1句话将其保存为字符串, 有人可以帮我吗?
谢谢
答案 0 :(得分:0)
您可以使用fetch
或XmlHTTPRequest
发出HTTP Get请求,并将值作为字符串存储到变量中
var someVar;
fetch('<path to text file>')
.then(function(response) {
return response.text();
})
.then(function(sentence) {
someVar = sentence;
});
请参阅[https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch] 或[https://www.w3schools.com/xml/xml_http.asp]