Showing
3 changed files
with
74 additions
and
30 deletions
1 | -## Topic | ||
2 | -> 코로나 19 예방접종 의료기관 조회 웹서비스를 제공하는 프로젝트입니다. | ||
3 | 1 | ||
4 | -## Member | ||
5 | -| 김서연 | 허정용 | | ||
6 | -| :----: | :----: | | ||
7 | -| [@ksy991018](https://github.com/ksy991018) | [@JeongYougHeo](https://github.com/JeongYougHeo) | | ||
8 | 2 | ||
3 | +~~~ | ||
4 | +# integrated#1의 branch를 clone해오기 | ||
5 | +git clone -b integrated#1 --single-branch http://khuhub.khu.ac.kr/2018103585/Corona_Vaccination_Medical_Institution.git | ||
6 | +cd Corona_Vaccination_Medical_Institution | ||
9 | 7 | ||
8 | + | ||
9 | +# 본인 이름으로 각자 branch 생성 후 올리기 | ||
10 | +git checkout -b integrated#1_이름 | ||
11 | +git add . | ||
12 | +git commit -m "커밋메시지" | ||
13 | +git push origin integrated#1_이름 | ||
14 | +~~~ | ||
15 | + | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -9,37 +9,46 @@ app.set('views','./views') | ... | @@ -9,37 +9,46 @@ app.set('views','./views') |
9 | app.set('view engine','pug'); | 9 | app.set('view engine','pug'); |
10 | app.use(express.static('public')); | 10 | app.use(express.static('public')); |
11 | 11 | ||
12 | + | ||
12 | //?page=페이지번호&?perPage=페이지당 데이터수 | 13 | //?page=페이지번호&?perPage=페이지당 데이터수 |
13 | const $base_url = `https://api.odcloud.kr/api/apnmOrg/v1/list`; | 14 | const $base_url = `https://api.odcloud.kr/api/apnmOrg/v1/list`; |
14 | const $key = '4US0H%2BXj%2BmS8IR4YL0%2BUb9H4CcbTr92QxhYULfOEz1DT%2BZaaos4sRfNh6cmAD2Icli862Ysc31%2BaE4pWywDBIA%3D%3D'; | 15 | const $key = '4US0H%2BXj%2BmS8IR4YL0%2BUb9H4CcbTr92QxhYULfOEz1DT%2BZaaos4sRfNh6cmAD2Icli862Ysc31%2BaE4pWywDBIA%3D%3D'; |
15 | - | ||
16 | -//임시 | ||
17 | const $page=1; | 16 | const $page=1; |
18 | -const $perPage=10; | 17 | +const $perPage=30000; |
19 | 18 | ||
20 | -const $api_url = $base_url + '?returnType=XML&serviceKey='+$key+'&page='+$page+'&perPage='+$perPage; | 19 | +const $api_url = $base_url + '?serviceKey='+$key+'&page='+$page+'&perPage='+$perPage; |
21 | console.log($api_url); | 20 | console.log($api_url); |
22 | 21 | ||
22 | +//해당 URL로 요청 | ||
23 | +app.post('/',function(req,res,next){ | ||
24 | + const searchWord = req.body.region; //지역 키워드 | ||
25 | + | ||
26 | + request($api_url,function(err,response,body){ | ||
27 | + if(err) throw err; | ||
28 | + | ||
29 | + //data부분만 추출 | ||
30 | + var obj = JSON.parse(body).data; | ||
31 | + | ||
32 | + // console.log(obj); | ||
33 | + | ||
34 | + //검색한 지역 포함한 모든 data 담기 | ||
35 | + let searchList = obj.filter(searchList => { | ||
36 | + return searchList.orgZipaddr.includes(searchWord); | ||
37 | + }); | ||
38 | + | ||
39 | + // console.log(searchList); | ||
40 | + | ||
41 | + //result라는 변수에 담아 결과 보내기 | ||
42 | + res.render('main', {result:searchList}); | ||
43 | + }) | ||
44 | + | ||
45 | +}) | ||
46 | + | ||
23 | 47 | ||
24 | app.listen(3000,function(){ | 48 | app.listen(3000,function(){ |
25 | console.log('Connected 3000 port!'); | 49 | console.log('Connected 3000 port!'); |
26 | }); | 50 | }); |
27 | 51 | ||
28 | -request($api_url,function(err,res,body){ | ||
29 | - $ = cheerio.load(body); | ||
30 | - const $infoList = $('item') | ||
31 | - console.log($infoList.html()); | ||
32 | - console.log($infoList.length); | ||
33 | - // let name = $infoList.find('orgnm').text(); | ||
34 | - // let location = $infoList.find('orgZipaddr').text(); | ||
35 | - // console.log(`기관명: ${name}, 위치: ${location}`); | ||
36 | -}) | ||
37 | - | ||
38 | -app.post('/search',function(req,res){ | ||
39 | - res.send('내가 검색한 지역은 ' + req.body.region); | ||
40 | -}) | ||
41 | - | ||
42 | app.get('/',function(req,res){ | 52 | app.get('/',function(req,res){ |
43 | - | ||
44 | res.render('main'); | 53 | res.render('main'); |
45 | }) | 54 | }) |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -2,8 +2,37 @@ html | ... | @@ -2,8 +2,37 @@ html |
2 | head | 2 | head |
3 | meta(charset='utf-8') | 3 | meta(charset='utf-8') |
4 | body | 4 | body |
5 | - form(action='/search' method="post") | ||
6 | - p | ||
7 | - input(type='text' name='region' placeholder='지역') | ||
8 | - p | ||
9 | - input(type='submit') | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
5 | + h1 COVID-19 의료기관 검색하기 | ||
6 | + | ||
7 | + form(action='/' method="post") | ||
8 | + p | ||
9 | + input(type='text' name='region' placeholder='서울시') | ||
10 | + input(type='submit') | ||
11 | + | ||
12 | + //result값 있을때만 | ||
13 | + if result!=NULL | ||
14 | + table | ||
15 | + tr | ||
16 | + th 기관명 | ||
17 | + th 기관 전화번호 | ||
18 | + th 기관 주소 | ||
19 | + th 휴무일 여부 | ||
20 | + th 점심 시작시간 | ||
21 | + th 점심 종료시간 | ||
22 | + th 진료 시작기간 | ||
23 | + th 진료 종료시간 | ||
24 | + -for(i=1; i<result.length; i++) | ||
25 | + tr | ||
26 | + td= result[i].orgnm | ||
27 | + td= result[i].orgTlno | ||
28 | + td= result[i].orgZipaddr | ||
29 | + td= result[i].hldyYn | ||
30 | + td= result[i].lunchSttTm | ||
31 | + td= result[i].lunchEndTm | ||
32 | + td= result[i].sttTm | ||
33 | + td= result[i].endTm | ||
34 | + | ||
35 | + | ||
36 | + | ||
37 | + | ||
38 | + | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or login to post a comment