-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscrap.js
41 lines (35 loc) · 889 Bytes
/
scrap.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
var http = require('http');
var request =require('request');
var cheerio = require('cheerio');
var fs = require('fs');
var MongoClient = require('mongodb').MongoClient;
var db = null;
MongoClient.connect('mongodb://localhost:27017/hlsc',function(err,db1){
db=db1
})
var baseURL = 'http://www.hlsc.co.kr/front/brand/aj_item_search.php';
var form = {
bd_id:'',
wc_id:'',
sort:'',
aj_mode:'search',
p:1,
page_scale:2000,
thumb_w:234,
thumb_h:234,
item_detail_length:300
}
var options = {
method : 'POST',
url : baseURL,
form : form
}
request(options,function(err,res,body){
var json = JSON.parse(body);
if(json.msg == '성공'){
json.arrList1.forEach(function(value,index){
db.collection('items').insert(value);
console.log(index,value.I_NAME,Object.keys(value).length);
})
}
})