AngularJS實(shí)現(xiàn)ajax請(qǐng)求的方法
本文實(shí)例講述了AngularJS實(shí)現(xiàn)ajax請(qǐng)求的方法。分享給大家供大家參考,具體如下:
【HTML 代碼】
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,user-scalable=no, initial-scale=1">
<link rel="stylesheet" type="text/css" href="" />
<title>angularjs實(shí)現(xiàn) ajax</title>
</head>
<body ng-app="HelloAjax">
<div ng-controller="HelloAjax">
<form>
<input type="text" ng-model="username" />
<input type="text" ng-model="email" />
</form>
<table>
<tr ng-repeat="user in users">
<td>{{user.username}}</td>
<td>{{user.email}}</td>
</tr>
</table>
<button ng-click="get_more();">get more</button>
</div>
</body>
<script type="text/javascript" src="./js/angular.min.js" charset="utf-8"></script>
<script type="text/javascript" src="ajax.js" charset="utf-8"></script>
</html>
【js代碼 ajax.js】
var myModule = angular.module("HelloAjax",[]);
myModule.controller("HelloAjax",["$scope","$http",function HelloAjax($scope,$http){
/*
$scope.users=[{'username':"zhangsan","email":"zs@11.com"},
{'username':"zhangsan2","email":"zs@22.com"},
{'username':"zhangsan3","email":"zs@33.com"}];
*/
$scope.get_more = function(){
$http({
method: "POST",
url: "./ajax.php",
data:{'username':$scope.username,
'email':$scope.email
}
}).
success(function(data, status) {
//$scope.status = status;
$scope.users = data;
}).
error(function(data, status) {
//$scope.data = data || "Request failed";
//$scope.status = status;
});
}
}]);
【PHP代碼 ajax.php】
<?php
//獲取參數(shù)
$data = file_get_contents("php://input");
$user = json_decode($data);
//查詢數(shù)據(jù)庫(kù)
$conn = mysql_connect("localhost","root","");
mysql_select_db("test");
$sql ="select username,email from users ";
$res = mysql_query($sql,$conn);
$users = array();
while($row = mysql_fetch_assoc($res)){
$users[] = $row;
}
//當(dāng)然這里簡(jiǎn)化了插入數(shù)據(jù)庫(kù)
$users[] = array('username'=>$user->username,
'email'=>$user->email);
//返回?cái)?shù)據(jù)庫(kù)
echo json_encode($users);
更多關(guān)于AngularJS相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《AngularJS入門與進(jìn)階教程》、《jQuery常用插件及用法總結(jié)》、《jquery中Ajax用法總結(jié)》、《JavaScript中ajax操作技巧總結(jié)》及《PHP+ajax技巧與應(yīng)用小結(jié)》
希望本文所述對(duì)大家AngularJS程序設(shè)計(jì)有所幫助。
- AngularJs ng-repeat 嵌套如何獲取外層$index
- AngularJS入門(用ng-repeat指令實(shí)現(xiàn)循環(huán)輸出
- AngularJS ng-repeat數(shù)組有重復(fù)值的解決方法
- Angularjs的ng-repeat中去除重復(fù)數(shù)據(jù)的方法
- AngularJS使用ng-repeat指令實(shí)現(xiàn)下拉框
- AngularJS基礎(chǔ) ng-repeat 指令簡(jiǎn)單示例
- Angularjs中ng-repeat-start與ng-repeat-end的用法實(shí)例介紹
- AngularJS入門教程之與服務(wù)器(Ajax)交互操作示例【附完整demo源碼下載】
- 實(shí)例詳解angularjs和ajax的結(jié)合使用
- 在AngularJS中使用AJAX的方法
- AngularJS ng-repeat指令及Ajax的應(yīng)用實(shí)例分析
相關(guān)文章
使用Angular.js開發(fā)的注意事項(xiàng)
這篇文章主要記錄了一些在學(xué)習(xí)和使用angular.js踩到的坑和需要注意的點(diǎn),方便以后自己查閱,也給同樣遇到這些問(wèn)題的朋友們一些幫助,有需要的朋友們下面來(lái)一起看看吧。2016-10-10
詳解基于angular-cli配置代理解決跨域請(qǐng)求問(wèn)題
本篇文章主要介紹了詳解基于angular-cli配置代理解決跨域請(qǐng)求問(wèn)題,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-07-07
Angular中懶加載模塊初始化技術(shù)實(shí)例解析
這篇文章主要為大家介紹了Angular中懶加載模塊初始化技術(shù)實(shí)例解析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2023-10-10
angularjs中ng-bind-html的用法總結(jié)
這篇文章主要介紹了angularjs中ng-bind-html的用法總結(jié),小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2017-05-05
詳細(xì)介紹RxJS在Angular中的應(yīng)用
本篇文章主要介紹了詳細(xì)介紹RxJS在Angular中的應(yīng)用,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2017-09-09

