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!
1 Answer
Reset to default 6I'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
版权声明:本文标题:javascript - Calling a init function when a directive is loaded - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743801276a2541359.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论