jquery - Angular js 如何在controller 中调用service 。
某草草
某草草 2017-05-15 16:59:41
0
1
539
hoemApp.controller('homeController', ['$http', '$scope', '$interval', 'homecharts', function ($http, $scope, $interval, homecharts) {

    // controller 内容 , 怎么调用 service

}]).service('homecharts', ['$http', '$rootScope', '$interval', function ($http, $scope, $interval) {

    $http({
        method: 'GET',
        params: {username: "admin"},
        url: 'http://localhost:9090/homevm'
    }).success(function (data, status, headers, config) {
        $scope.infoData = data;
    }).error(function (data, status, headers, config) {
    });

我这里的service 并不用返回任何数据, 所有的数据的赋值都在service中完成了 ,
现在我想通过routeProvider 来实现 ng-view 的试图展示,
但是 routeProvider.when() 方法指定一个controller , 但是我现在的controller里面没有调用service,
所有我该在controller中如何调用service ?

某草草
某草草

reply all(1)
PHPzhong

This link was written by a person 2 years ago, it is very detailed

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template