최신 웹 개발 튜토리얼
 

웹 건물 - AppML


. AppML 사용 : 처음 파트 VII에서 웹 사이트를 구축.


우리는 무엇을 할 것 인

우리는 것이 장의 내용 :

  • 웹 사이트에서 가져 오기 및 디스플레이 데이터에 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 자습서 .