国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

AngularJS實現(xiàn)ajax請求的方法

Original 2017-01-07 15:59:59 778
abstract:本文實例講述了AngularJS實現(xiàn)ajax請求的方法。分享給大家供大家參考,具體如下:【HTML 代碼】<!DOCTYPE html> <html> <head>   <meta charset="utf-8">   <meta name="v

本文實例講述了AngularJS實現(xiàn)ajax請求的方法。分享給大家供大家參考,具體如下:

【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實現(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ù)庫
$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;
}
//當然這里簡化了插入數(shù)據(jù)庫
$users[] = array('username'=>$user->username,
         'email'=>$user->email);
//返回數(shù)據(jù)庫
echo json_encode($users);

更多關(guān)于AngularJS實現(xiàn)ajax請求的方法請關(guān)注PHP中文網(wǎng)(www.miracleart.cn)其他文章! 

Release Notes

Popular Entries