在AngularJS中,可以使用Promise对象来处理异步调用。下面是一个示例代码,展示了两个函数之间的异步调用:
app.controller('MyController', ['$scope', '$q', function($scope, $q) {
   // 第一个函数
   function asyncFunction1() {
      var deferred = $q.defer();
      setTimeout(function() {
         console.log('Async function 1');
         deferred.resolve();
      }, 2000);
      return deferred.promise;
   }
   // 第二个函数
   function asyncFunction2() {
      var deferred = $q.defer();
      setTimeout(function() {
         console.log('Async function 2');
         deferred.resolve();
      }, 1000);
      return deferred.promise;
   }
   // 两个函数之间的异步调用
   asyncFunction1().then(function() {
      return asyncFunction2();
   }).then(function() {
      console.log('Async calls completed');
   });
}]);
在上述代码中,我们使用了$q服务和deferred对象来创建并返回Promise对象。setTimeout函数用于模拟异步操作。asyncFunction1和asyncFunction2分别是两个需要异步调用的函数。在异步调用链中,通过调用then方法来指定异步函数的顺序。最后的then方法用于处理异步调用完成后的操作。
注意:在实际应用中,可能还需要处理异步调用的错误情况,例如使用catch方法来捕获并处理异常。