Neueste Web-Entwicklung Tutorials
 

AppML Prototyp


In diesem Kapitel werden wir einen Prototyp für eine Web-Anwendung erstellen.


Erstellen Sie eine HTML-Prototyp

Erstellen Sie zunächst einen ordentlichen HTML - Prototyp, Ihren Lieblings - CSS.

Wir haben in diesem Beispiel verwendete Bootstrap:

Beispiel

<!DOCTYPE html>
<html lang="en-US">

<title>Customers</title>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">

<body>

<div class="container">
<h1>Customers</h1>
<table class="table table-striped table-bordered">
  <tr>
    <th>Customer</th>
    <th>City</th>
    <th>Country</th>
  </tr>
  <tr>
    <td>{{CustomerName}}</td>
    <td>{{City}}</td>
    <td>{{Country}}</td>
  </tr>
</table>
</div>

</body>
</html>
Versuch es selber "

{{...}} sind Platzhalter für zukünftige Daten.


In AppML

Nachdem Sie ein HTML-Prototyp erstellt haben, können Sie AppML hinzufügen:

Beispiel

<!DOCTYPE html>
<html lang="en-US">

<title>Customers</title>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="http://www.w3ii.com/appml/2.0.3/appml.js"></script>
<script src="http://www.w3ii.com/appml/2.0.3/appml_sql.js"></script>
<body>

<div class="container" appml-data="customers.js" >
<h1>Customers</h1>
<table class="table table-striped table-bordered">
  <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>
</div>

</body>
</html>
Versuch es selber "

In AppML:

<script src = "http://www.w3ii.com/appml/2.0.3/appml.js">

Fügen Sie eine lokale Datenbank WebSQL:

<script src = "http://www.w3ii.com/appml/2.0.3/appml_sql.js">

Definieren Sie eine Datenquelle:

appml-data = "customers.js"

Definieren Sie das HTML-Element für jeden Datensatz in Aufzeichnungen wiederholt werden:

appml_repeat = "Aufzeichnungen"

Um es einfach, beginnen Sie mit lokalen Daten wie customers.js vor Verbindung mit einer Datenbank.


Neues Modell AppML

Um eine Datenbank zu verwenden, erhalten Sie ein AppML Datenbankmodell benötigen:

proto_customers.js

{
"rowsperpage" : 10,
"database" : {
"connection" : "localmysql",
"sql" : "Select * from Customers",
"orderby" : "CustomerName",
}

Wenn Sie nicht über eine lokale Datenbank haben, können Sie das AppML Modell verwenden, um eine Web-SQL-Datenbank zu erstellen.

Um eine Tabelle mit einem einzelnen Datensatz zu erstellen, verwenden ein Modell wie folgt aus : proto_customers_single.js .

eine lokale Datenbank erstellen arbeitet in IE oder Firefox nicht. Verwenden Sie Chrome oder Safari.

Verwenden Sie das Modell in Ihrer Anwendung. Ändern Sie die Datenquelle für lokale Modell = proto_customers_single?:

Beispiel

<div appml-data=" local?model=proto_customers_single ">
<h1>Customers</h1>
<table class="table table-striped table-bordered">
  <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>
</div>
Versuch es selber "

Erstellen eine lokale Datenbank mit mehreren Aufzeichnungen

Um eine Tabelle mit mehreren Datensätzen zu erstellen, verwenden ein Modell wie folgt aus : proto_customers_all.js .

Ändern Sie die Datenquelle für lokale? Modell = proto_customers_all

Beispiel

<div appml-data=" local?model=proto_customers_all ">
<h1>Customers</h1>
<table class="table table-striped table-bordered">
  <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>
</div>
Versuch es selber "

Fügen Sie eine Navigation Vorlage

Angenommen, Sie möchten alle Ihre Anwendungen eine gemeinsame Navigationsleiste haben:

Erstellen Sie eine HTML-Vorlage für sie:

inc_listcommands.htm

<div class="btn-group" role="toolbar" style="margin-bottom:10px;">

  <button id='appmlbtn_first' type="button" class="btn btn-default">
  <span class="glyphicon glyphicon-fast-backward"></span></button>

  <button id='appmlbtn_previous' type="button" class="btn btn-default">
  <span class="glyphicon glyphicon-backward"></span></button>

  <button id='appmlbtn_text' type="button" class="btn btn-default disabled"></button>

  <button id='appmlbtn_next' type="button" class="btn btn-default">
  <span class="glyphicon glyphicon-forward"></span></button>
 
  <button id='appmlbtn_last' type="button" class="btn btn-default">
  <span class="glyphicon glyphicon-fast-forward"></span></button>

  <button id='appmlbtn_query' type="button" class="btn btn-primary">
  <span class="glyphicon glyphicon-search"></span> Filter</button>

</div>

<div id="appmlmessage"></div>

Speichern Sie die Vorlage in einer Datei mit einem Eigennamen wie "inc_listcommands.htm" .

Fügen Sie die Vorlage in Ihrem Prototyp mit dem Attribut appml-include-html:

Beispiel

<div appml-data="local?model=proto_customers_all">
<h1>Customers</h1>
<div appml-include-html="inc_listcommands.htm" ></div>

<table class="table table-striped table-bordered">
  <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>
</div>
Versuch es selber "