最新的Web开发教程
 

AppML WebMatrix中


如果你没有一个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文件

替换在这个新文件的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中)

Web配置


配置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数据库中找到的数据库名称=
usernameUID =找到的用户名
passwordPWD =找到的密码

复制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页面

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中右键单击该页面,并在浏览器中选择启动