如果你沒有一個Web服務器,你可以創建一個使用WebMatrix中。
WebMatrix中
WebMatrix的是一個免費的Web開發工具,提供了一種簡單的方法來構建網站。
WebMatrix中包含:
- 網絡例子和模板
- 針對不同的網絡語言支持(PHP, ASP.NET, Node.js)
- Web服務器
- 數據庫服務器(mySQL and SQL Server Compact)
隨著WebMatrix中,你可以用空的網站啟動,或建立在使用PHP,ASP,一把umbraco,DotNetNuke的,Drupal的是,Joomla,WordPress和多個現有的模板。
WebMatrix中也有一個數據庫,安全,搜索引擎優化,網絡出版內置工具。
要安裝WebMatrix中,請點擊此鏈接: http://www.microsoft.com/web/webmatrix
創建一個空的PHP網站
在WebMatrix中,選擇模板庫 。 選擇PHP。 選擇空位置 。
更改網站名稱 DemoAppml (or anything you like) ,然後單擊下一步 。
正如你可以從圖中看到,WebMatrix中都會讓你創建許多不同類型的網站。
創建HTML測試頁
在WebMatrix的窗口中,選擇新建 。 選擇新文件 。 選擇文件類型HTML。
更改為customers.htm的文件名(or anything you like) 。 單擊確定 。
替換在這個新文件的HTML:
customers.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) ,然後單擊確定 。
在WebMatrix中,選擇文件 ,並打開web.config文件。
(如果你不能看到web.config文件,刷新WebMatrix中)
配置AppML
利用這些信息,從連接字符串在web.config中,以創建AppML一個配置文件。
命名文件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:
創建數據庫表
在數據庫中創建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頁面 :
customers.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中右鍵單擊該頁面,並在瀏覽器中選擇啟動 。