從頭開始建立第七部分網站:使用AppML。
我們將要做什麼
在本章中,我們將:
- 使用AppML在網站上獲取和顯示數據
將下面的代碼裡面的文件:
customers.html客戶
<!DOCTYPE html>
<html>
<head>
<title>Customers</title>
<link href="site.css" rel="stylesheet">
<script src="http://www.w3ii.com/appml/2.0.1/appml.js"></script>
</head>
<body>
<nav
id="nav01"></nav>
<div id="main">
<h1>Customers</h1>
<table appml-data="http://www.w3ii.com/website/customers.html">
<tr>
<th>Name</th>
<th>City</th>
<th>Country</th>
</tr>
<tr
appml-repeat="records">
<td>{{Name}}</td>
<td>{{City}}</td>
<td>{{Country}}</td>
</tr>
</table>
<footer id="foot01"></footer>
</div>
<script src="script.js"></script>
</body>
</html>
試一試»上面的代碼是在前面的章節太多相同。
只有這一次的數據被取出,並與AppML顯示。
閱讀更多
了解更多關於AppML在我們AppML教程 。