最新的Web开发教程
 

网站建设 - AppML


从头开始建立第七部分网站:使用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教程