📜  js 从 url 获取文件内容 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:02.805000             🧑  作者: Mango

代码示例1
// create a variable called content containing the content from https://URL/file
fetch("https://URL/file").then((r)=>{r.text().then((d)=>{let CONTENT = d})})