ล่าสุดการพัฒนาเว็บบทเรียน
 

อาคาร 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