如何在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數據的佔位符。