tutoriais mais recente desenvolvimento web
 

AppML Como


Como construir um aplicativo AppML em 2 etapas fáceis.


1. Crie uma página usando HTML e 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>
Tente você mesmo "

O {{}} colchetes são espaços reservados para dados 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;
}

Sinta-se livre para substituir o CSS com sua própria folha de estilo favorito.


2. Adicione AppML

Use AppML para adicionar dados a sua página:

Exemplo

<!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>
Tente você mesmo "

AppML explicou:

<script src = "http://www.w3ii.com/appml/2.0.3/appml.js"> acrescenta AppML à sua página.

appml-data = "customers.js" conecta dados AppML (customers.js) a um HTML element (<table>) .

Neste caso, temos usado um arquivo JSON: customers.js

appml-repeat = "registros" repete um elemento HTML (<tr>) para cada item (records) em um objeto de dados.

O {{}} colchetes são espaços reservados para dados AppML.