admin管理员组

文章数量:1345127

I have a simple directive that loads ments from a service(mentsService):

'use strict';

angular.module('mean.rank')
    .directive('mentList', function(CommentsService, Global) {
        return {
            restrict: 'E',
            templateUrl:  'rank/views/ments-list.html',
            replace: false,
            link: function($scope, element, attrs) {
                //accessing the ad info :  console.log("ADD  " , $scope.ad);
                $scopements = [];

                $scope.loadComments = function () {
                    console.log("in loadComments");
                    var adID = {};
                    adID.ad_ID = $scope.ad.nid;
                    console.log("calling services.getComments function with  " , adID.ad_ID);
                    CommentsService.getComments(adID.ad_ID)
                        .then(function (response) {
                            angular.forEach(ment in response)
                            $scopements.push(ment);
                        });


                };


            }
        }
    })

The loaded ments should be loaded to the list(inside the templateUrl) using ng-init and then the service for loading (I will add the code if needed).

<div ng-init="loadComments()">
    <ul class="media-list ment-detail-list" >
        <li class="media" ng-repeat="ment in ments" >
            <article>
                <div class="pull-left ment-info">
                    <a href="#" class="author">{{ ment.author }}</a><br />
                    <time>{{ ment.datePublished | date:"MM/dd/yyyy" }}</time>
                </div>
                <div class="media-body">
                    <div class="ment-body">
                        <p>{{ mentment }}</p>
                    </div>
                </div>
            </article>
        </li>
        <li>Debugger</li>
    </ul>
</div>

The directive has in its scope the loadCommets() function but it is not triggered. Thank's for your help!

I have a simple directive that loads ments from a service(mentsService):

'use strict';

angular.module('mean.rank')
    .directive('mentList', function(CommentsService, Global) {
        return {
            restrict: 'E',
            templateUrl:  'rank/views/ments-list.html',
            replace: false,
            link: function($scope, element, attrs) {
                //accessing the ad info :  console.log("ADD  " , $scope.ad);
                $scope.ments = [];

                $scope.loadComments = function () {
                    console.log("in loadComments");
                    var adID = {};
                    adID.ad_ID = $scope.ad.nid;
                    console.log("calling services.getComments function with  " , adID.ad_ID);
                    CommentsService.getComments(adID.ad_ID)
                        .then(function (response) {
                            angular.forEach(ment in response)
                            $scope.ments.push(ment);
                        });


                };


            }
        }
    })

The loaded ments should be loaded to the list(inside the templateUrl) using ng-init and then the service for loading (I will add the code if needed).

<div ng-init="loadComments()">
    <ul class="media-list ment-detail-list" >
        <li class="media" ng-repeat="ment in ments" >
            <article>
                <div class="pull-left ment-info">
                    <a href="#" class="author">{{ ment.author }}</a><br />
                    <time>{{ ment.datePublished | date:"MM/dd/yyyy" }}</time>
                </div>
                <div class="media-body">
                    <div class="ment-body">
                        <p>{{ ment.ment }}</p>
                    </div>
                </div>
            </article>
        </li>
        <li>Debugger</li>
    </ul>
</div>

The directive has in its scope the loadCommets() function but it is not triggered. Thank's for your help!

Share Improve this question edited Dec 26, 2017 at 15:41 Danilo Cândido 4081 gold badge5 silver badges18 bronze badges asked Oct 26, 2015 at 9:34 Itsik MauyhasItsik Mauyhas 4,00415 gold badges74 silver badges119 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 6

I'd suggest putting the function call inside the link function itself instead of ng-init.

angular.module('mean.rank')
    .directive('mentList', function(CommentsService, Global) {
        return {
            ...
            link: function($scope, element, attrs) {
                //accessing the ad info :  console.log("ADD  " , $scope.ad);
                $scope.ments = [];

                $scope.loadComments = function () {
                    ...
                };

                $scope.loadComments();
            }
        }
    })

Edit: by the way your forEach syntax is wrong. It should be

angular.forEach(response, function(ment){
    $scope.ments.push(ment);
});

本文标签: javascriptCalling a init function when a directive is loadedStack Overflow