Cum de a construi o aplicație AppML în 2 pași simpli.
1. Crearea unei pagini folosind HTML si CSS
HTML
<!DOCTYPE html>
<html lang="en-US">
<link rel="stylesheet" href="style.css">
<title>Customers</title>
<body>
<h1>Customers</h1>
<table>
<tr>
<th>Customer</th>
<th>City</th>
<th>Country</th>
</tr>
<tr>
<td>{{CustomerName}}</td>
<td>{{City}}</td>
<td>{{Country}}</td>
</tr>
</table>
</body>
</html>
Încearcă - l singur » Cei {{}} paranteze sunt date pentru substituenților AppML.
CSS
body {
font: 14px Verdana, sans-serif;
}
h1 {
color: #996600;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
border: 1px solid grey;
padding: 5px;
text-align: left;
}
table
tr:nth-child(odd) {
background-color: #f1f1f1;
}
Simțiți-vă liber pentru a înlocui CSS cu propria foaie de stil preferat.
2. Adăugați AppML
Utilizați AppML pentru a adăuga date la pagina dvs.:
Exemplu
<!DOCTYPE html>
<html lang="en-US">
<title>Customers</title>
<link rel="stylesheet" href="style.css">
<script src="http://www.w3ii.com/appml/2.0.3/appml.js"></script>
<body>
<h1>Customers</h1>
<table appml-data="customers.js" >
<tr>
<th>Customer</th>
<th>City</th>
<th>Country</th>
</tr>
<tr appml-repeat="records" >
<td>{{CustomerName}}</td>
<td>{{City}}</td>
<td>{{Country}}</td>
</tr>
</table>
</body>
</html>
Încearcă - l singur » AppML explicat:
<script src = "http://www.w3ii.com/appml/2.0.3/appml.js"> adaugă AppML la pagina ta.
appml-date = "customers.js" conectează date AppML (customers.js) la un HTML element (<table>) de element (<table>) .
În acest caz , am folosit un fișier JSON: customers.js
appml-repetare = "înregistrări" repetă un element HTML (<tr>) pentru fiecare element (records) într - un obiect de date.
Cei {{}} paranteze sunt date pentru substituenților AppML.