Construire un site web à partir de zéro Partie VII:. Utilisation de appml.
Qu'allons nous faire
Dans ce chapitre, nous allons:
- Utilisez appml pour récupérer et afficher des données sur un site Web
Placez le code suivant dans le fichier:
customers.html
<!DOCTYPE html>
<html>
<head>
<title>Customers</title>
<link href="site.css" rel="stylesheet">
<script src="http://www.w3ii.com/appml/2.0.1/appml.js"></script>
</head>
<body>
<nav
id="nav01"></nav>
<div id="main">
<h1>Customers</h1>
<table appml-data="http://www.w3ii.com/website/customers.html">
<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>
Essayez - le vous - même »Le code ci-dessus est beaucoup même que dans le chapitre précédent.
Seulement cette fois les données sont extraites et affichées avec appml.
Lire la suite
En savoir plus sur appml dans notre Tutoriel appml .