一、superagent的npm地址:superagent - npm (npmjs.com)
二、代码示例
const superagent = require("superagent");
const fs = require("fs");
async function writeFile(html:string){
fs.writeFileSync('index.html',html,"utf-8");
}
async function getHtml(){
let htmlObj = await superagent.get("www.baidu.com");
let html:string = htmlObj.text;
await writeFile(html);
console.log(html);
return html;
}
getHtml();
该博客介绍了如何利用superagent库从指定URL获取HTML内容,并将其保存到本地文件中。示例代码展示了async/await的用法,通过fs模块将抓取的HTML写入index.html文件,并在控制台打印出来。
557

被折叠的 条评论
为什么被折叠?



