Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

AppML 模型


AppML 模型描述一个应用程序。


什么是 AppML 模型?

AppML 模型是一个描述应用程序的 JavaScript 对象 (JSON)。

这个小型模型描述了一个从 **数据库** 中检索数据的完整应用程序

{
"database" : {
    "connection" : "localmysql",
    "sql" : "SELECT * FROM Customers"}
}

AppML 模型可以做什么?

使用 AppML 模型,您可以

  • 定义到数据库的连接,如 MySQL、SQL Server、Access 和 Oracle。
  • 定义到数据文件的连接,如 JSON、XML 和其他文本文件。
  • 定义用于检索数据的 SQL 语句。
  • 定义过滤和排序限制。
  • 定义数据类型、数据格式和更新限制。
  • 定义应用程序安全性、用户和用户组。

示例

要允许用户过滤数据(搜索、排序),您可以向模型添加过滤信息

示例

"filteritems" : [
    {"item" : "CustomerName", "label" : "客户"},
    {"item" : "City"},
    {"item" : "Country"}
]

要允许用户更新数据,您可以向模型添加更新信息:

示例

"updateItems" : [
    {"item" : "CustomerName"},
    {"item" : "Address"},
    {"item" : "PostalCode"},
    {"item" : "City"},
    {"item" : "Country"}
]

没有模型

您在本教程前面看到的应用程序没有使用任何模型。

在后面的章节中,我们将连接到数据库,读取、过滤和更新数据,如模型中所指定。


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.