91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在angularJs中使用$http獲取后臺數據

發布時間:2021-02-05 17:29:39 來源:億速云 閱讀:238 作者:Leah 欄目:web開發

本篇文章為大家展示了如何在angularJs中使用$http獲取后臺數據,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

1.html

<div ng-app="module" ng-controller="ctrl">
 <table border="1" width="600">
  <tr>
   <td>網站名稱</td>
   <td>網址</td>
  </tr>
  <tr ng-repeat="v in data">
   <td>{{v.name}}</td>
   <td>{{v.url}}</td>
  </tr>
 </table>
</div>
<script>
 var m = angular.module('module', []);
 //注入http服務
 m.controller('ctrl', ['$scope', '$http', function ($scope, $http) {
  $http({
   method:'get', //get請求方式
   url:'1.php' //請求地址
  }).then(function(response){
   //成功時執行
   console.log(response);
   $scope.data = response.data; //得到請求的數據
  },function(response){
   //失敗時執行 
   console.log(response);
  });
 }]);
</script>

1.php

<?php
$data = [
 [ 'name' => '百度', 'url' => 'www.baidu.com' ],
 [ 'name' => '騰訊', 'url' => 'www.qq.com' ],
];
echo json_encode($data,JSON_UNESCAPED_UNICODE);

上面是最簡單的$http獲取后臺數據實例,假如一個頁面中要異步加載一個后臺文件好幾次,那么是不是也要請求服務好幾次呢?顯然這樣會使頁面的加載出現遲鈍,那么,我們可以通過緩存操作來減少服務器壓力,使其盡快顯示頁面數據,那么,具體怎么做呢?很簡單,在$http 中添加cache:true, ,即可解決,再刷新頁面的時候,只會顯示一次重復請求的數據。

  $http({
   method:'get',
   url:'1.php',
   cache:true, //避免多次請求后臺數據
  }).then(function(response){
   //成功時執行
   console.log(response);
   $scope.data = response.data;
  },function(response){
   //失敗時執行 
   console.log(response);
  });

當然,像jquery的ajax請求那樣,angularjs也可以進行簡寫,

 m.controller('ctrl', ['$scope', '$http', function ($scope, $http) {
 //post方式
 //$http.post('1.php',{id:1})參數里可加屬性
  $http.post('1.php').then(function(response){
   //成功時執行
   console.log(response);
   $scope.data = response.data;
  });
 }]);
 m.controller('ctrl', ['$scope', '$http', function ($scope, $http) {
 //get方式
 //$http.get('1.php',{cache:true}) 參數里可加屬性
  $http.get('1.php').then(function(response){
   //成功時執行
   console.log(response);
   $scope.data = response.data;
  });
 }]);

最后,來說下 $http服務之后臺接收POST數據的幾種方式:

<div ng-app="module" ng-controller="ctrl"></div>
<script>
 var m = angular.module('module', []);
 m.controller('ctrl', ['$scope', '$http', function ($scope, $http) {
  //第一種方式
/*  $http({
   method:'post',
   url:'1.php',
   data:{id:1,name:'后盾人'}
  }).then(function(response){
   console.log(response.data);
  })*/
 //第二種方式
  $http({
   method:'post',
   url:'1.php',
   data:$.param({id:1,name:'后盾人'}),
   headers:{'Content-type':'application/x-www-form-urlencoded'}
  }).then(function(response){
   console.log(response.data);
  })
 }]);
</script>
<?php
#第一種處理方法
//$content = file_get_contents('php://input');
//print_r(json_decode($content,true));

#第二種方式
print_r($_POST);

上述內容就是如何在angularJs中使用$http獲取后臺數據,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

莱阳市| 德江县| 崇义县| 苏尼特左旗| 南川市| 益阳市| 邵东县| 永康市| 米泉市| 蕲春县| 望都县| 三穗县| 明水县| 泸溪县| 浪卡子县| 汉沽区| 获嘉县| 新竹市| 海盐县| 平果县| 武威市| 体育| 包头市| 西华县| 沐川县| 巴中市| 石阡县| 长沙市| 武城县| 滁州市| 大同市| 财经| 郁南县| 永新县| 耿马| 乐都县| 宜城市| 达拉特旗| 志丹县| 开原市| 云龙县|