La construcción de un sitio web desde cero Parte VII:. Usando AppML.
Lo que haremos
En este capítulo vamos a:
- Utilice AppML se ha podido recuperar y mostrar datos en una página web
Coloque el código siguiente en el archivo:
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>
Inténtalo tú mismo "El código de seguridad es mucho igual que en el capítulo anterior.
Sólo que esta vez se cargan los datos y se muestran con AppML.
Lee mas
Leer más sobre AppML en nuestro Tutorial AppML .