将参数从控制器传递给异步服务方法

Passing a parameter to async service method from controller

我是 angularjs 的新手,所以我很难将参数从控制器传递给服务方法。

我的控制器是这样的:

userControllers.controller('StartController', function(startService,$scope) {
    var server='http://localhost:8080/terminal/1';
    // Call the async method and then do stuff with what is returned inside our own then function
    startService.async().then(function(d) {
        $scope.message = d;
    });
});

服务方式:

myService.factory('startService', function($http) {
    var startService = {
        async: function () {
            // $http returns a promise, which has a then function, which also returns a promise
            var promise = $http.get('http://localhost:8080/terminal/1').then(function (response) {
                // The then function here is an opportunity to modify the response
                console.log(response.headers('link'));

                // The return value gets picked up by the then in the controller.
                return response;
            });
            // Return the promise to the controller
            return promise;
        }
    };
    return startService;
});

这段代码工作正常。现在我想从控制器传递变量 'server' 以用于服务而不是 link。知道怎么做吗?如何在服务函数调用中使用多个变量?

更新代码在** **

之间
 userControllers.controller('StartController', function(startService,$scope) {
        var server='http://localhost:8080/terminal/1';
        // Call the async method and then do stuff with what is returned inside our own then function
        **startService.async(server).then(function(d) {**
            $scope.message = d;
        });
    });



myService.factory('startService', function($http) {
    var startService = {
        async: **function (server) {**
            // $http returns a promise, which has a then function, which also returns a promise
            var promise = **$http.get(server)**.then(function (response) {
                // The then function here is an opportunity to modify the response
                console.log(response.headers('link'));

                // The return value gets picked up by the then in the controller.
                return response;
            });
            // Return the promise to the controller
            return promise;
        }
    };
    return startService;
});