tutorial pengembangan web terbaru
 

AppML cara


Bagaimana membangun Aplikasi AppML di 2 langkah mudah.


1. Buat Halaman Menggunakan HTML dan 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>
Cobalah sendiri "

The {{}} kurung adalah placeholder untuk data 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;
}

Jangan ragu untuk mengganti CSS dengan sendiri favorit style sheet Anda.


2. Tambahkan AppML

Gunakan AppML untuk menambahkan data ke halaman Anda:

Contoh

<!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>
Cobalah sendiri "

AppML Dijelaskan:

<script src = "http://www.w3ii.com/appml/2.0.3/appml.js"> menambahkan AppML ke halaman Anda.

appml-data = "customers.js" menghubungkan data yang AppML (customers.js) ke HTML element (<table>) .

Dalam hal ini kita telah menggunakan file JSON: customers.js

appml-repeat = "catatan" mengulangi elemen HTML (<tr>) untuk setiap item (records) dalam sebuah objek data.

The {{}} kurung adalah placeholder untuk data AppML.