Showing
2 changed files
with
23 additions
and
12 deletions
1 | -<h4> 동물약국 현황</h4> | 1 | +<h4> 💊동물약국 현황</h4> |
2 | <table class="table"> | 2 | <table class="table"> |
3 | <thead class="thead-dark"> | 3 | <thead class="thead-dark"> |
4 | <tr> | 4 | <tr> |
5 | <th>동물약국명</th> | 5 | <th>동물약국명</th> |
6 | + <th>도로명주소</th> | ||
6 | </tr> | 7 | </tr> |
7 | </thead> | 8 | </thead> |
8 | <tbody> | 9 | <tbody> |
9 | - <tr> | 10 | + <%for (var i=0; i <category_list.length; i++){%> |
10 | - <td> | 11 | + <tr> |
11 | - <%=titles%> | 12 | + <td> |
12 | - </td> | 13 | + <%=category_list[i].title._text%> |
13 | - | 14 | + </td> |
14 | - </tr> | 15 | + <td> |
16 | + <%=category_list[i].venue._text%> | ||
17 | + </td> | ||
18 | + </tr> | ||
19 | + <%}%> | ||
15 | 20 | ||
16 | </tbody> | 21 | </tbody> |
17 | </table> | 22 | </table> | ... | ... |
... | @@ -3,14 +3,20 @@ | ... | @@ -3,14 +3,20 @@ |
3 | <thead class="thead-dark"> | 3 | <thead class="thead-dark"> |
4 | <tr> | 4 | <tr> |
5 | <th>도시공원명</th> | 5 | <th>도시공원명</th> |
6 | + <th>도로명주소</th> | ||
6 | </tr> | 7 | </tr> |
7 | </thead> | 8 | </thead> |
8 | <tbody> | 9 | <tbody> |
9 | - <tr> | 10 | + <%for (var i=0; i <appliance_list.length; i++){%> |
10 | - <td> | 11 | + <tr> |
11 | - <%=titles%> | 12 | + <td> |
12 | - </td> | 13 | + <%=appliance_list[i].title._text%> |
13 | - </tr> | 14 | + </td> |
15 | + <td> | ||
16 | + <%=appliance_list[i].venue._text%> | ||
17 | + </td> | ||
18 | + </tr> | ||
19 | + <%}%> | ||
14 | 20 | ||
15 | </tbody> | 21 | </tbody> |
16 | </table> | 22 | </table> | ... | ... |
-
Please register or login to post a comment