Web Building - AppML
1. What We Will Do
이번 장에서:
- AppML을 이용한 인출(fetch)과 웹 사이트에 데이터 표시하기 입니다.
customers.html에 아래 코드를 입력해주세요:
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 | <!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <title>Customers</title> <link href="site.css" rel="stylesheet"> </head> <body> <nav id="nav01"></nav> <div id="main"> <h1>Customers</h1> <tr> <th>Name</th> <th>City</th> <th>Country</th> </tr> <tr appml-repeat="records"> <td>{{Name}}</td> <td>{{City}}</td> <td>{{Country}}</td> </tr> </table> <footer id="foot01"></footer> </div> <script src="script.js"></script> </body> </html> | cs |
* W3School을 통해 제작된 강좌입니다.