0
我在特定的URL上有json內容。我想將該json內容下載到文件test.json中。如何將內容從url下載到節點js中的文件中
我在特定的URL上有json內容。我想將該json內容下載到文件test.json中。如何將內容從url下載到節點js中的文件中
找到自己的答案,
我用 「套餐」 的要求和 「FS」
var request = require("request");
var fs = require("fs");
request
.get(theURLWithJson)
.on('error', function(err) {
console.log('err', err);
})
.pipe(fs.createWriteStream(fullFilePathWithFileName));
可以使用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);
});