在离子框架中调用 api 的良好起点

Good starting point for calling api in ionic framework

我是离子框架的新手,所以我不太了解。我想知道如何在我的应用程序中使用 ionic 调用 api?请任何人有任何想法然后建议我。

在 Ionic

中将 API 服务与 AngularJS 集成
 angular.module('ionicApp', [])

 .controller('MainCtrl', function($scope, $http) {
      $http.get('https://cors-test.appspot.com/test').then(function(resp) {
         console.log('Success', resp);
          // For JSON responses, resp.data contains the result
       }, function(err) {
         console.error('ERR', err);
         // err.status will contain the status code
       })
})

More...

angular.module('ionicApp', [])

.controller('MainCtrl', function($scope, $http) {
$http({
       method: method,//GET/POST/DELETE
       url: url,
       data: data,//JSON DATA FOR POST
       dataType: 'json',
       headers: {
                "Content-Type": "application/json"
       }
       }).success(function (data) {//Success handling
            console.log(data);
       }).error(function (data, status) {//Error handling
            console.log(status + data);
       });
)}

以上方法适用于任何类型的 HTTP(Get/Post/Delete/Put) 请求。

此致