最新的Web开发教程
 

AppML如何


如何在2个简单的步骤建立一个AppML应用。


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解释:

<SCRIPT 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数据的占位符。