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 应用程序在没有控制器的状态下运行

示例

<table appml-data="customers.js">
<tr>
  <th>客户</th>
  <th>城市</th>
  <th>国家</th>
</tr>
<tr appml-repeat="records">
  <td>{{CustomerName}}</td>
  <td>{{City}}</td>
  <td>{{Country}}</td>
</tr>
</table>
自己尝试 »


使用控制器

使用 AppML 控制器,你可以使用JavaScript控制你的应用程序。

控制器是一个 JavaScript 函数,由你提供

appml-controller 属性用于引用控制器函数。

示例

<h1>客户</h1>
<table appml-data="customers.js" appml-controller="myController">
  <tr>
    <th>客户</th>
    <th>城市</th>
    <th>国家</th>
  </tr>
  <tr appml-repeat="records">
    <td>{{CustomerName}}</td>
    <td>{{City}}</td>
    <td>{{Country}}</td>
  </tr>
</table>

<script>
function myController($appml) {
    if ($appml.message == "display") {
        if ($appml.display.name == "CustomerName") {
            $appml.display.value = $appml.display.value.toUpperCase();
        }
    }
}
</script>
自己尝试 »

上面示例中的控制器 (myController) 在显示之前将 "CustomerName" 的值更改为大写。

如果你有一个控制器,AppML 将在每次重要操作时将应用程序对象 ($appml) 发送到控制器。

应用程序属性之一是消息 ($appml.message),它描述了应用程序状态。

消息 描述
ready 在 AppML 初始化并准备加载数据后发送。
loaded 在 AppML 完全加载并准备显示数据后发送。
display 在 AppML 显示数据项之前发送。
done 在 AppML 完成(完成显示)后发送。
submit 在 AppML 提交数据之前发送。
error 在 AppML 遇到错误后发送。

下一章将解释消息。


×

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.