我想从txt文件中的URL下载文件。 我在
处有一个文本文件 https://server.com/file/downloadlink.txt
该txt文件包含我当前的EXE下载URL。
txt文件包含的URL是
https://server.com/file/downloadv1.exe
我也有一个php网页,它将从txt文件中获取URL并从该指定URL下载。
有什么想法吗?
答案 0 :(得分:0)
只需使用Fetch API。像这样:
fetch('https://example.com/file/downloadlink.txt').then((res) => {
if (!res.ok) {
throw new Error(res.statusText);
}
return res.text()
}).then((data) => {
// Parse your text file here
});
不确定为什么您不只是从该URL重定向。...