Toggle navigation
Toggle navigation
This project
Loading...
Sign in
zuzitsu
/
UR_Village
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Suyeon Jung
2020-12-09 02:27:57 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1df815601c2854ffe071c5426326fa439a1c0be8
1df81560
1 parent
1995e091
Fix error
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 additions
and
68 deletions
routes/category.js
views/result.ejs
views/results/food.ejs
routes/category.js
View file @
1df8156
This diff is collapsed. Click to expand it.
views/result.ejs
View file @
1df8156
...
...
@@ -10,70 +10,6 @@
<link
rel=
'stylesheet'
href=
'/css/category.css'
>
<title>
📝 결과
</title>
<h1>
🥘 맛집 현황
</h1>
<table
class=
"table"
>
<thead
class=
"thead-dark"
>
<tr>
<th>
음식점명
</th>
<th>
전화번호
</th>
<th>
대표음식
</th>
<th>
도로명주소
</th>
</tr>
</thead>
<tbody>
<
%for (var i =0; i
<stores
.
length
;
i
++){%
>
<tr>
<td>
<
%=stores[i].RESTRT_NM%>
</td>
<td>
<
%=stores[i].TASTFDPLC_TELNO%>
</td>
<td>
<
%=stores[i].REPRSNT_FOOD_NM%>
</td>
<td>
<
%=stores[i].REFINE_ROADNM_ADDR%>
</td>
</tr>
<
%}%>
</tbody>
</table>
<h3>
총 맛집 개수 :
<
%=stores.length%>
</h3>
<h1>
🍔 패스트푸드점 현황
</h1>
<table
class=
"table"
>
<thead
class=
"thead-dark"
>
<tr>
<th>
사업장명
</th>
<th>
도로명주소
</th>
</tr>
</thead>
<tbody>
<
%for (var i =0; i
<fast
_food_stores
.
length
;
i
++){%
>
<tr>
<td>
<
%=fast_food_stores[i].BIZPLC_NM%>
</td>
<td>
<
%=fast_food_stores[i].REFINE_ROADNM_ADDR%>
</td>
</tr>
<
%}%>
</tbody>
</table>
<h3>
패스트푸드점 개수 :
<
%=fast_food_stores.length%>
</h3>
</head>
<body>
...
...
views/results/food.ejs
View file @
1df8156
<h1>
🥘 맛집 현황</h1>
<table class="table">
<thead class="thead-dark">
<thead>
<tr>
<th>음식점명</th>
<th>전화번호</th>
...
...
@@ -29,13 +29,10 @@
</tbody>
</table>
<h3>총 맛집 개수 :
<%=stores.length%>
</h3>
<h1>🍔 패스트푸드점 현황 </h1>
<table class="table">
...
...
Please
register
or
login
to post a comment