Najnowsze tutoriale tworzenie stron internetowych
 

AppML Jak


Jak zbudować AppML Zastosowanie w 2 prostych krokach.


1. Tworzenie strony za pomocą HTML i 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>
Spróbuj sam "

W {{}} podano zastępczych danych 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;
}

Zapraszam do zastąpienia CSS z własnego arkusza ulubionym stylu.


2. Dodać AppML

Użyj AppML dodać dane do swojej strony:

Przykład

<!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>
Spróbuj sam "

AppML Wyjaśnione:

<script src = "http://www.w3ii.com/appml/2.0.3/appml.js"> dodaje AppML do swojej strony.

appml-data = "customers.js" łączy dane AppML (customers.js) do HTML element (<table>) .

W tym przypadku użyliśmy plik JSON: customers.js

appml-repeat = "rekordy" powtarza elementu HTML (<tr>) dla każdej pozycji (records) w obiekcie danych.

W {{}} podano zastępczych danych AppML.