파충류-그림 잡기

const request = require('request')
const cheerio = require('cheerio')
const fs = require('fs')
const path = require('path')
let targetUrl = 'http://............'

request(targetUrl, (err, result, body) => {
  if (err) { throw Error(err) }
  let $ = cheerio.load(body)
  $('img').each( function(i) {
    let imgUrl = $(this).attr('src')
    if (!(imgUrl.includes('https') || imgUrl.includes('http'))) {
      imgUrl = 'http:' + imgUrl
    }
    let pop = imgUrl.split('.').pop()
    request(imgUrl).pipe(fs.createWriteStream( path.join(__dirname, i + '.' + pop), {encoding: 'utf8'}))
  })
})

4.567917.웹 페이지 사진 을 올 라 가 로 컬 디 렉 터 리 에 다운로드 합 니 다

좋은 웹페이지 즐겨찾기