应用机器学习 数据
这 主要的 AppML 的目的是提供数据 到 HTML 页面。
将 AppML 连接到数据
- AppML 可以显示来自变量的数据
- AppML 可以显示来自文件的数据
- AppML 可以显示来自数据库的数据
AppML 使用 JavaScript 对象
分离 HTML 和数据的常用方法是将数据存储在 JavaScript 对象中。
例子
<table appml-data="数据对象">
<tr>
<th>顾客</th>
<th>城市</th>
<th>国家</th>
</tr>
<tr appml-repeat="records">
<td>{{顾客姓名}}</td>
<td>{{城市}}</td>
<td>{{国家}}</td>
</tr>
</table>
<script>
var 数据对象 = {
“记录”:[
{"CustomerName":"Alfreds Futterkiste","City":"柏林","Country":"德国"},
{"CustomerName":"Ana Trujillo Emparedados y helados","City":"墨西哥城","Country":"墨西哥"},
{"CustomerName":"Antonio Moreno Taquería","City":"墨西哥城","Country":"墨西哥"},
{"CustomerName":"Around the Horn","City":"London","Country":"UK"},
{"CustomerName":"B's Beverages","City":"伦敦","Country":"英国"},
{"CustomerName":"Berglunds snabbköp","City":"吕勒奥","Country":"瑞典"},
{"CustomerName":"Blauer See Delikatessen","City":"曼海姆","Country":"德国"},
{"CustomerName":"Blondel père et fils","City":"斯特拉斯堡","Country":"法国"},
{"CustomerName":"Bólido Comidas preparadas","City":"马德里","Country":"西班牙"},
{"CustomerName":"Bon app'","City":"马赛","Country":"法国"},
{"CustomerName":"Bottom-Dollar Marketse","City":"Tsawassen","Country":"加拿大"},
{"CustomerName":"Cactus Comidas para llevar","City":"布宜诺斯艾利斯","Country":"阿根廷"},
{"CustomerName":"Centro comercial Moctezuma","City":"墨西哥城","Country":"墨西哥"},
{"CustomerName":"杂碎中餐","City":"伯尔尼","Country":"瑞士"},
{"CustomerName":"Comércio Mineiro","City":"圣保罗","Country":"巴西"}
]};
</script>
亲自尝试 »
使用 JSON 文件的 AppML
分离 HTML 和数据的另一种常见方法是将数据存储在 JSON 文件中:
客户.js
{
“记录”:[
{"CustomerName":"Alfreds Futterkiste","City":"柏林","Country":"德国"},
{"CustomerName":"Ana Trujillo Emparedados y helados","City":"墨西哥城","Country":"墨西哥"},
{"CustomerName":"Antonio Moreno Taquería","City":"墨西哥城","Country":"墨西哥"},
{"CustomerName":"Around the Horn","City":"London","Country":"UK"},
{"CustomerName":"B's Beverages","City":"伦敦","Country":"英国"},
{"CustomerName":"Berglunds snabbköp","City":"吕勒奥","Country":"瑞典"},
{"CustomerName":"Blauer See Delikatessen","City":"曼海姆","Country":"德国"},
{"CustomerName":"Blondel père et fils","City":"斯特拉斯堡","Country":"法国"},
{"CustomerName":"Bólido Comidas preparadas","City":"马德里","Country":"西班牙"},
{"CustomerName":"Bon app'","City":"马赛","Country":"法国"},
{"CustomerName":"Bottom-Dollar Marketse","City":"Tsawassen","Country":"加拿大"},
{"CustomerName":"Cactus Comidas para llevar","City":"布宜诺斯艾利斯","Country":"阿根廷"},
{"CustomerName":"Centro comercial Moctezuma","City":"墨西哥城","Country":"墨西哥"},
{"CustomerName":"杂碎中餐","City":"伯尔尼","Country":"瑞士"},
{"CustomerName":"Comércio Mineiro","City":"圣保罗","Country":"巴西"}
]
}
使用 AppML,您可以在 appml-data 属性中指定 JSON 文件作为数据源:
例子
<table appml-data="customers.js">
<tr>
<th>顾客</th>
<th>城市</th>
<th>国家</th>
</tr>
<tr appml-repeat="records">
<td>{{顾客姓名}}</td>
<td>{{城市}}</td>
<td>{{国家}}</td>
</tr>
</table>
亲自尝试 »
AppML 使用数据库
借助 Web 服务器的帮助,您可以为您的应用程序提供 SQL 数据。
此示例使用 PHP 从 MySQL 数据库读取数据:
例子
<table appml-data="https://www.w3schools.com/appml/customers.html”>
<tr>
<th>顾客</th>
<th>城市</th>
<th>国家</th>
</tr>
<tr appml-repeat="records">
<td>{{顾客姓名}}</td>
<td>{{城市}}</td>
<td>{{国家}}</td>
</tr>
</table>
亲自尝试 »
AppML 的力量
您即将发现 AppML 的强大功能。
AppML 可以为您提供以下数据、控制器和模型:
- 超级简单的 HTML 应用程序开发
- 超级简单的建模、原型设计和测试
您可以在 HTML 页面中放置任意数量的 AppML 应用程序。
AppML 不会干扰页面的其他部分。
您拥有完全的 HTML、CSS 和 JavaScript 自由。
AppML 可用于开发全面的 CRUD Web 应用程序。
增删改查: C创建, R伊德, 乌更新, 德選擇。
要发现 AppML 的强大功能: 查看 AppML 演示.