从文本文件读取URL,然后以exe格式下载文件。 Java脚本

时间:2019-04-02 22:38:32

标签: javascript file variables url download

我想从txt文件中的URL下载文件。 我在

处有一个文本文件
    https://server.com/file/downloadlink.txt 

该txt文件包含我当前的EXE下载URL。

txt文件包含的URL是

    https://server.com/file/downloadv1.exe

我也有一个php网页,它将从txt文件中获取URL并从该指定URL下载。

有什么想法吗?

1 个答案:

答案 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重定向。...