Как построить AppML приложение в 2 простых шага.
1. Создание страницы с помощью HTML и 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>
Попробуй сам " В {{}} скобки заполнители для данных 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;
}
Вы можете заменить CSS с собственными любимыми стилями.
2. Добавить AppML
Используйте AppML для добавления данных на страницу:
пример
<!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>
Попробуй сам " AppML Разъяснение:
<сценарий SRC = "http://www.w3ii.com/appml/2.0.3/appml.js"> добавляет AppML на свою страницу.
appml-данные = "customers.js" связывает данные AppML (customers.js) к HTML - element (<table>) .
В этом случае мы использовали файл в формате JSON: customers.js
appml-повтор = «запись» повторяет HTML элемент (<tr>) для каждого элемента (records) в объекте данных.
В {{}} скобки заполнители для данных AppML.