どのように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を説明します:
<スクリプト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データのプレースホルダです。