最新のWeb開発のチュートリアル
 

AppML WebMatrixの


Webサーバーを持っていない場合は、WebMatrixのを使用して、1を作成することができます。


WebMatrixの

WebMatrixには、ウェブサイトを構築するための簡単な方法を提供し、無料のWeb開発ツールです。

WebMatrixには含まれています:

  • ウェブ例とテンプレート
  • さまざまなWeb言語のサポート(PHP, ASP.NET, Node.js)
  • Webサーバ
  • データベースサーバ(mySQL and SQL Server Compact)

あなたは空のウェブサイトで開始し、またはPHP、ASP、Umbraco、DotNetNukeの、Drupalは、Joomlaの、ワードプレスなどを使用して、既存のテンプレートを構築することができWebMatrixのでは。

WebMatrixではまた、データベース、セキュリティ、検索エンジン最適化、およびWebパブリッシングのための組み込みツールがあります。

:WebMatrixのをインストールするには、このリンクに従うhttp://www.microsoft.com/web/webmatrixを


空のPHPサイトを作成します。

WebMatrixのでは、 テンプレートギャラリーを選択します。 PHPを選択します。 空のサイトを選択します。

DemoAppmlにサイト名を変更する(or anything you like) 、および[ 次へ ] クリックします。

ウェブサイトを作成します

あなたがイラストからもわかるように、WebMatrixには、あなたがウェブサイトの多くの異なる種類を作成できます。


HTMLテストページを作成します。

WebMatrixのウィンドウで、[新規 ] 選択します。 新しいファイルを選択します。 ファイルタイプのHTMLを選択します。

得意先.htmにファイル名を変更(or anything you like)[OK]をクリックします。

HTMLファイルを作成します。

これで新しいファイルにHTMLを置き換えます。

得意先.htm

<!DOCTYPE html>
<html lang="en">
<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>
<body>

<div class="container" appml-data="customers">
<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>

<script>
var customers = {
"records":[
{"CustomerName":"Alfreds Futterkiste","City":"Berlin","Country":"Germany"},
{"CustomerName":"Ana Trujillo Emparedados y helados","City":"Mexico D.F.","Country":"Mexico"},
{"CustomerName":"Antonio Moreno Taqueria","City":"Mexico D.F.","Country":"Mexico"},
{"CustomerName":"Around the Horn","City":"London","Country":"UK"},
{"CustomerName":"B's Beverages","City":"London","Country":"UK"},
{"CustomerName":"Berglunds snabbkop","City":"Lulea","Country":"Sweden"},
{"CustomerName":"Blauer See Delikatessen","City":"Mannheim","Country":"Germany"},
{"CustomerName":"Blondel pere et fils","City":"Strasbourg","Country":"France"},
{"CustomerName":"Bolido Comidas preparadas","City":"Madrid","Country":"Spain"},
{"CustomerName":"Bon app'","City":"Marseille","Country":"France"},
{"CustomerName":"Bottom-Dollar Marketse","City":"Tsawassen","Country":"Canada"},
{"CustomerName":"Cactus Comidas para llevar","City":"Buenos Aires","Country":"Argentina"},
{"CustomerName":"Centro comercial Moctezuma","City":"Mexico D.F.","Country":"Mexico"},
{"CustomerName":"Chop-suey Chinese","City":"Bern","Country":"Switzerland"},
{"CustomerName":"Comercio Mineiro","City":"Sao Paulo","Country":"Brazil"}
]};
</script>

</body>
</html>
»それを自分で試してみてください

テストページを実行するには:WebMatrixの中でページを右クリックしブラウザでの起動を選択します。


データベースを作成します

WebMatrixのウィンドウでデータベースを選択します。 新しいデータベースを選択します。 MySQLデータベースを選択します。

DEMODBにデータベース名を変更する(or anything you like) 、[OK]をクリックします。

データベースを作成します。

WebMatrixのでは、 ファイルを選択し、web.configファイルを開きます。

(あなたはweb.configファイルを見ることができない場合は、WebMatrixのリフレッシュ)

Web設定


設定しAppML

AppML用の設定ファイルを作成するには、web.configファイル内の接続文字列から、情報を使用してください。

ファイルappml_config.php名前付け:

appml_config.php

<?php echo("Access Forbidden");exit();?>
{
"dateformat" : "yyyy-mm-dd",
"databases" : [{
    "connection" : "mydatabase",
    "host" : "localhost",
    "dbname" : "DemoDB",
    "username" : "DemoDBUkbn5",
    "password" : "l6|U6=V(*T+P"
}]
}

設定ファイルの説明しました:

プロパティ 説明
dateformat あなたのモデルで使用する日付形式
connection あなたのモデルで使用する接続名
host サーバーで見つかったIPまたはホスト名=
dbname データベースで見つかったデータベース名=
username UIDで見つかったユーザー名=
password PWD =で見つかったパスワード

コピーAppML

:ファイルのダウンロードhttp://www.w3ii.com/appml/2.0.3/appml.php.txtを

あなたのウェブサイトにファイルをコピーします。 appml.phpに名前を変更:

appml.phpコピー


データベースのテーブルを作成します。

データベースのCustomersテーブルを作成するためのモデルを作成します。

Create_Customers.js

{
"database" : {
"connection" : "mydatabase",
"execute" : [
"DROP TABLE IF EXISTS Customers",
"CREATE TABLE IF NOT EXISTS Customers (CustomerID INT NOT NULL AUTO_INCREMENT,PRIMARY KEY (CustomerID),CustomerName NVARCHAR(255),ContactName NVARCHAR(255),Address NVARCHAR(255),City NVARCHAR(255),PostalCode NVARCHAR(255),Country NVARCHAR(255))",
"INSERT INTO Customers(CustomerName,ContactName,Address,City,PostalCode,Country)VALUES (\"Alfreds Futterkiste\",\"Maria Anders\",\"Obere Str. 57\",\"Berlin\",\"12209\",\"Germany\")",
"INSERT INTO Customers(CustomerName,ContactName,Address,City,PostalCode,Country)VALUES (\"Around the Horn\",\"Thomas Hardy\",\"120 Hanover Sq.\",\"London\",\"WA1 1DP\",\"UK\")",
"INSERT INTO Customers(CustomerName,ContactName,Address,City,PostalCode,Country)VALUES (\"Blauer See Delikatessen\",\"Hanna Moos\",\"Forsterstr. 57\",\"Mannheim\",\"68306\",\"Germany\")"
]
}}

Create_Customersモデルを実行するためのHTMLページを作成します。

Create_Customers.htm

<!DOCTYPE html>
<html lang="en-US">
<script src="http://www.w3ii.com/appml/2.0.3/appml.js"></script>
<body>

<div appml-data="appml.php?model=Create_Customers"></div>

</body>
</html>

HTMLページを実行するには:WebMatrixの中でページを右クリックしブラウザでの起動を選択します。


アプリケーションの作成

顧客のアプリケーションのためのモデルを作成します。 customers.jsとして保存します。

Customers.js

{
"rowsperpage" : 10,
"database" : {
    "connection" : "mydatabase",
    "sql" : "SELECT * FROM Customers",
    "orderby" : "CustomerName"
}
}

顧客のアプリケーションを実行するためのHTMLページを作成します。

得意先.htm

<!DOCTYPE html>
<html lang="en">
<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>
<body>

<div class="container" appml-data="appml.php?model=customers">
<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>
»それを自分で試してみてください

HTMLページを実行するには:WebMatrixの中でページを右クリックしブラウザでの起動を選択します。