Wie eine AppML Anwendung in zwei einfachen Schritten zu bauen.
1. Erstellen Sie eine Seite mit HTML und 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>
Versuch es selber " Die {{}} Klammern sind Platzhalter für AppML Daten.
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;
}
Fühlen Sie sich frei, die CSS mit Ihrem eigenen Lieblingsstylesheet zu ersetzen.
2. Fügen Sie AppML
Verwenden Sie AppML hinzufügen Daten zu Ihrer Seite:
Beispiel
<!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>
Versuch es selber " AppML Erklärt:
<script src = "http://www.w3ii.com/appml/2.0.3/appml.js"> fügt AppML zu Ihrer Seite.
appml-data = "customers.js" verbindet AppML Daten (customers.js) zu einem HTML - element (<table>) .
: In diesem Fall haben wir eine JSON - Datei verwendet customers.js
appml-repeat = "Aufzeichnungen" , wiederholt ein HTML - Element (<tr>) für jedes Element (records) in einem Datenobjekt.
Die {{}} Klammern sind Platzhalter für AppML Daten.