admin管理员组文章数量:1346189
I have a service like so:
app.service('Utilities', function() {
this.sum = function(items, prop) {
var count, total;
total = 0;
count = 0;
if (items === null) {
total = 0;
}
while (count < items.length) {
total += items[count][prop] * 1 || 0;
count++;
}
return total;
};
});
and a controller like so:
app.controller('writeCtrl', function($scope, Utilities, students) {
$scope.students = students;
$scope.total_age = Utilities.sum($scope.students, 'age');
});
And I keep getting the error
Typerror: Utilities.sum is not a function
Which is confusing because about a dozen other functions under the Utilities service is working fine. What's causing the issue, and how do I get the function to work?
Edit Actual Coffeescript version
app.service 'Utilities', ->
@sum = (items, prop) ->
total = 0
count = 0
if items == null
total = 0
while count < items.length
total += (items[count][prop]*1 || 0)
count++
return total
app.controller 'writeCtrl', ($scope, Utilities, students) ->
$scope.students = students
$scope.total_age = Utilities.sum($scope.students, 'age')
Solution:
Coffeescript functions need a return:
App.service 'Utilities', ->
.....
return
I have a service like so:
app.service('Utilities', function() {
this.sum = function(items, prop) {
var count, total;
total = 0;
count = 0;
if (items === null) {
total = 0;
}
while (count < items.length) {
total += items[count][prop] * 1 || 0;
count++;
}
return total;
};
});
and a controller like so:
app.controller('writeCtrl', function($scope, Utilities, students) {
$scope.students = students;
$scope.total_age = Utilities.sum($scope.students, 'age');
});
And I keep getting the error
Typerror: Utilities.sum is not a function
Which is confusing because about a dozen other functions under the Utilities service is working fine. What's causing the issue, and how do I get the function to work?
Edit Actual Coffeescript version
app.service 'Utilities', ->
@sum = (items, prop) ->
total = 0
count = 0
if items == null
total = 0
while count < items.length
total += (items[count][prop]*1 || 0)
count++
return total
app.controller 'writeCtrl', ($scope, Utilities, students) ->
$scope.students = students
$scope.total_age = Utilities.sum($scope.students, 'age')
Solution:
Coffeescript functions need a return:
App.service 'Utilities', ->
.....
return
Share
Improve this question
edited Jul 19, 2015 at 3:07
Ryan.lay
asked Jul 18, 2015 at 16:24
Ryan.layRyan.lay
1,7612 gold badges17 silver badges32 bronze badges
2
- 1 Is this the correct indentation of your code? CoffeeScript is whitespace significant and it would appear you have an indentation error on line 3 – Dan Commented Jul 18, 2015 at 16:41
- @DanPantry Hi Dan, the indentation must've got messed up when I pasted it on stackoverflow, but yes the indentation in my actual code is correct. – Ryan.lay Commented Jul 18, 2015 at 16:46
1 Answer
Reset to default 8Service never returns an object, basically it binds a method or variable to its context; nothing but this
& then it returns a new object
which contains all the things which were binded to this
.
Code
app.service('Utilities', function() {
this.sum = function(items, prop) {
var count, total;
total = 0;
count = 0;
if (items === null) {
total = 0;
}
while (count < items.length) {
total += items[count][prop] * 1 || 0;
count++;
}
return total;
};
//
// ..other utility method should lies here..
//..do your stuff
});
Update
You should change your coffee script service from
app.service 'Utilities' ->
to
app.service 'Utilities' () ->
本文标签: javascriptangularjs service is not a functionStack Overflow
版权声明:本文标题:javascript - angularjs service is not a function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743809746a2542844.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论