AngularJS SQL+HTML DOM+事件
AngularJS SQL
在前面章節中的程式碼也可以用於讀取資料庫中的資料。
使用 PHP 從 MySQL 中獲取資料
AngularJS 例項
<div ng-app="myApp" ng-controller="customersCtrl">
<table>
<tr ng-repeat="x in names">
<td>{{ x.Name }}</td>
<td>{{ x.Country }}</td>
</tr>
</table>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
$http.get("http://www.runoob.com/try/angularjs/data/Customers_MySQL.php")
.success(function (response) {$scope.names = response.records;})
;});
</script>
ASP.NET 中執行 SQL 獲取資料
AngularJS 例項
<div ng-app="myApp" ng-controller="customersCtrl">
<table>
<tr ng-repeat="x in names">
<td>{{ x.Name }}</td>
<td>{{ x.Country }}</td>
</tr>
</table>
</div>
<script>
var app = angular.module('myApp', [])
app.controller('customersCtrl', function($scope, $http) {
$http.get("http://www.runoob.com/try/angularjs/data/Customers_SQL.aspx")
.success(function (response) {$scope.names = response.records;})
;});
</script>
服務端程式碼
<small>以下列出了幾種服務端程式碼型別:
- 使用 PHP 和 MySQL。返回 JSON。
- 使用 PHP 和 MS Access。返回 JSON。
- 使用 ASP.NET, VB, 及 MS Access。 返回 JSON。
- 使用 ASP.NET, Razor, 及 SQL Lite。 返回 JSON。
跨域 HTTP 請求
如果你需要從不同的伺服器(不同域名)上獲取資料就需要使用跨域 HTTP 請求。
跨域請求在網頁上非常常見。很多網頁從不同伺服器上載入 CSS, 圖片,Js指令碼等。
在現代瀏覽器中,為了資料的安全,所有請求被嚴格限制在同一域名下,如果需要呼叫不同站點的資料,需要通過跨域來解決。
以下的 PHP 程式碼執行使用的網站進行跨域訪問。
header("Access-Control-Allow-Origin: *");
更多跨域訪問解決方案可參閱:PHP Ajax 跨域問題最佳解決方案。</small>
1. PHP 和 MySql 程式碼例項
<?php
header("Access-Control-Allow-Origin: *");
header("Content-Type: application/json; charset=UTF-8");
$conn = new mysqli("myServer", "myUser", "myPassword", "Northwind");
$result = $conn->query("SELECT CompanyName, City, Country FROM Customers");
$outp = "";
while($rs = $result->fetch_array(MYSQLI_ASSOC)) {
if ($outp != "") {$outp .= ",";}
$outp .= '{"Name":"' . $rs["CompanyName"] . '",';
$outp .= '"City":"' . $rs["City"] . '",';
$outp .= '"Country":"'. $rs["Country"] . '"}';
}
$outp ='{"records":['.$outp.']}';
$conn->close();
echo($outp);
?>
2. PHP 和 MS Access 程式碼例項
<?php
header("Access-Control-Allow-Origin: *");
header("Content-Type: application/json; charset=ISO-8859-1");
$conn = new COM("ADODB.Connection");
$conn->open("PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source=Northwind.mdb");
$rs = $conn->execute("SELECT CompanyName, City, Country FROM Customers");
$outp = "";
while (!$rs->EOF) {
if ($outp != "") {$outp .= ",";}
$outp .= '{"Name":"' . $rs["CompanyName"] . '",';
$outp .= '"City":"' . $rs["City"] . '",';
$outp .= '"Country":"'. $rs["Country"] . '"}';
$rs->MoveNext();
}
$outp ='{"records":['.$outp.']}';
$conn->close();
echo ($outp);
?>
3. ASP.NET, VB 和 MS Access 程式碼例項
<%@ Import Namespace="System.IO"%>
<%@ Import Namespace="System.Data"%>
<%@ Import Namespace="System.Data.OleDb"%>
<%
Response.AppendHeader("Access-Control-Allow-Origin", "*")
Response.AppendHeader("Content-type", "application/json")
Dim conn As OleDbConnection
Dim objAdapter As OleDbDataAdapter
Dim objTable As DataTable
Dim objRow As DataRow
Dim objDataSet As New DataSet()
Dim outpDim cconn = New OledbConnection("Provider=Microsoft.Jet.OLEDB.4.0;data source=Northwind.mdb")
objAdapter = New OledbDataAdapter("SELECT CompanyName, City, Country FROM Customers", conn)
objAdapter.Fill(objDataSet, "myTable")objTable=objDataSet.Tables("myTable")
outp = ""
c = chr(34)
for each x in objTable.Rows
if outp <> "" then outp = outp & ","
outp = outp & "{" & c & "Name" & c & ":" & c & x("CompanyName") & c & ","
outp = outp & c & "City" & c & ":" & c & x("City") & c & ","
outp = outp & c & "Country" & c & ":" & c & x("Country") & c & "}"
next
outp ="{" & c & "records" & c & ":[" & outp & "]}"
response.write(outp)
conn.close
%>
4. ASP.NET, VB Razor 和 SQL Lite 程式碼例項
@{
Response.AppendHeader("Access-Control-Allow-Origin", "*")
Response.AppendHeader("Content-type", "application/json")
var db = Database.Open("Northwind");
var query = db.Query("SELECT CompanyName, City, Country FROM Customers");
var outp =""
var c = chr(34)
}
@foreach(var row in query)
{
if outp <> "" then outp = outp + ","
outp = outp + "{" + c + "Name" + c + ":" + c + @row.CompanyName + c + ","
outp = outp + c + "City" + c + ":" + c + @row.City + c + ","
outp = outp + c + "Country" + c + ":" + c + @row.Country + c + "}"
}
outp ="{" + c + "records" + c + ":[" + outp + "]}"
@outp
AngularJS HTML DOM
AngularJS 為 HTML DOM 元素的屬性提供了繫結應用資料的指令。
ng-disabled 指令
<small>ng-disabled 指令直接繫結應用程式資料到 HTML 的 disabled 屬性。</small>
AngularJS 例項
<div ng-app="" ng-init="mySwitch=true">
<p>
<button ng-disabled="mySwitch">點我!</button>
</p>
<p>
<input type="checkbox" ng-model="mySwitch">按鈕
</p>
<p>
{{ mySwitch }}
</p>
</div>
嘗試一下 »
<small>例項講解:
ng-disabled 指令繫結應用程式資料 "mySwitch" 到 HTML 的 disabled 屬性。
ng-model 指令繫結 "mySwitch" 到 HTML input checkbox 元素的內容(value)。
如果 mySwitch 為true, 按鈕將不可用:
<p>
<button disabled>點我!</button>
</p>
如果 mySwitch 為false, 按鈕則可用: </small>
<p>
<button>點我!</button>
</p>
ng-show 指令
<small>ng-show 指令隱藏或顯示一個 HTML 元素。
AngularJS 例項
<div ng-app="">
<p ng-show="true">我是可見的。</p>
<p ng-show="false">我是不可見的。</p>
</div>
嘗試一下 »
ng-show 指令根據 value 的值來顯示(隱藏)HTML 元素。
你可以使用表示式來計算布林值( true 或 false):</small>
AngularJS 例項
<div ng-app="" ng-init="hour=13">
<p ng-show="hour > 12">我是可見的。</p>
</div>
嘗試一下 »
<small>在下一個章節中,我們將為大家更多通過點選按鈕來隱藏 HTML 元素的例項。</small>
ng-hide 指令
<small>ng-hide 指令用於隱藏或顯示 HTML 元素。</small>
AngularJS 例項
<div ng-app="">
<p ng-hide="true">我是不可見的。</p>
<p ng-hide="false">我是可見的。</p>
</div>
AngularJS 事件
AngularJS 有自己的 HTML 事件指令。
ng-click 指令
<small>ng-click 指令定義了 AngularJS 點選事件。</small>
AngularJS 例項
<div ng-app="" ng-controller="myCtrl">
<button ng-click="count = count + 1">點我!</button>
<p>{{ count }}</p>
</div>
隱藏 HTML 元素
<small>ng-hide 指令用於設定應用部分是否可見。
ng-hide="true" 設定 HTML 元素不可見。
ng-hide="false" 設定 HTML 元素可見。</small>
AngularJS 例項
<div ng-app="myApp" ng-controller="personCtrl">
<button ng-click="toggle()">隱藏/顯示</button>
<p ng-hide="myVar">
名: <input type="text" ng-model="firstName"><br>
姓名: <input type="text" ng-model="lastName"><br>
<br>
Full Name: {{firstName + " " + lastName}}</p>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('personCtrl', function($scope) {
$scope.firstName = "John",
$scope.lastName = "Doe"
$scope.myVar = false;
$scope.toggle = function() {
$scope.myVar = !$scope.myVar;
};
});
</script>
嘗試一下 »
<small>應用解析:
第一部分 personController與控制器章節類似。
應用有一個預設屬性: $scope.myVar = false;
ng-hide 指令設定 < p>元素及兩個輸入域是否可見, 根據 myVar 的值 (true 或 false) 來設定是否可見。
toggle() 函式用於切換 myVar 變數的值(true 和 false)。
ng-hide="true" 讓元素 不可見。</small>
顯示 HTML 元素
<small>ng-show 指令可用於設定應用中的一部分是否可見 。
ng-show="false" 可以設定 HTML 元素 不可見。
ng-show="true" 可以以設定 HTML 元素可見。
以下例項使用了 ng-show 指令:</small>
AngularJS 例項
<div ng-app="myApp" ng-controller="personCtrl">
<button ng-click="toggle()">隱藏/顯示</button>
<p ng-show="myVar">
名: <input type="text" ng-model="firstName"><br>
姓: <input type="text" ng-model="lastName"><br>
<br>
姓名: {{firstName + " " + lastName}}
</p>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('personCtrl', function($scope) {
$scope.firstName = "John",
$scope.lastName = "Doe"
$scope.myVar = true;
$scope.toggle = function() {
$scope.myVar = !$scope.myVar;
}
});
</script>
相關文章
- AngularJs 鍵盤事件和滑鼠事件AngularJS事件
- 【轉】ionic之AngularJS手勢事件AngularJS事件
- angularjs中響應回車事件AngularJS事件
- AngularJS教程十八—— 迴圈結束事件AngularJS事件
- 如何使用angularjs實現按鈕事件AngularJS事件
- AngularJS 的髒值檢查和事件機制AngularJS事件
- Angularjs——初識AngularJSAngularJS
- ASP.NET MVC下使用AngularJs語言(二):ng-click事件ASP.NETMVCAngularJS事件
- angularJsAngularJS
- Angularjs(一)AngularJS
- AngularJS教程AngularJS
- angularjs transitionsAngularJS
- angularjs resourcesAngularJS
- 指令<AngularJs>AngularJS
- angularjs animationAngularJS
- AngularJS除錯的Chrome外掛:AngularJS BatarangAngularJS除錯ChromeBAT
- AngularJS(二、如何用AngularJS建立前端程式碼框架)AngularJS前端框架
- AngularJS 1.x系列:AngularJS過濾器(4)AngularJS過濾器
- AngularJS 1.x系列:AngularJS控制器(3)AngularJS
- AngularJS學習筆記1——什麼是AngularJS?AngularJS筆記
- AngularJS學習筆記3——AngularJS的工作原理AngularJS筆記
- 初識AngularJSAngularJS
- AngularJS整理(1.0.0)AngularJS
- AngularJS之FilterAngularJSFilter
- angularjs post dataAngularJS
- [AngularJS]API地址AngularJSAPI
- AngularJS ui routerAngularJSUI
- angularJS articles and resourcesAngularJS
- angularjs work with reactAngularJSReact
- 你會用AngularJS,但你會寫AngularJS文件麼?AngularJS
- AngularJS學習筆記2——AngularJS的初始化AngularJS筆記
- AngularJS快速開始AngularJS
- AngularJS核心之DirectiveAngularJS
- AngularJS 4(三)【指令】AngularJS
- AngularJS 4(五)【管道】AngularJS
- AngularJS 4(七)【路由】AngularJS路由
- angularJs入門教程AngularJS
- angularJS 系列(七)---指令AngularJS