gpt4 book ai didi

node.js - 如何在node js中将url中的内容下载到文件中

转载 作者:太空宇宙 更新时间:2023-11-04 00:20:38 25 4
gpt4 key购买 nike

我在特定 URL 上有一个 json 内容。我想将该 json 内容下载到 test.json 文件中。

最佳答案

您可以使用node-fetch模块:

var fetch = require('node-fetch');
fetch('https://example.com/file.json')
.then(function(response) {
var destination = fs.createWriteStream('./destination-file.json');
response.body.pipe(destination);
});

关于node.js - 如何在node js中将url中的内容下载到文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44675917/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com