node-axios爬虫 发表于 2021-03-28 分类于 node node-axios爬虫 基本使用1const axios = require("axios"); get请求1axios.get(url: string, config?: AxiosRequestConfig) url:请求地址 config:可选参数,对象类型的。常用参数: responseType:请求类型 headers:请求头 下载一张图片 12345678import axios from "axios";import fs from "fs";axios.get("https://gitee.com/lishushuai/img/raw/master/20210318234209.jpg", { responseType: "stream"}).then(resp => { resp.data.pipe(fs.createWriteStream("./img/1.jpg"))})