当我尝试将$ add替换为push时,我收到此错误。
TypeError: undefined is not a function
at Scope.$scope.sendComment (http://localhost:9000/scripts/controllers/post.js:22:38)
at http://localhost:9000/bower_components/angular/angular.js:10847:21
...
这是我的控制器@ post.js
16 $scope.sendComment = function () {
17 var newComment = {
18 user: $scope.currentUser,
19 text: $scope.currentText
20
21 };
22 var promise = CommentService.add(newComment);
23 promise.then(function(name) {
24 console.log(name);
25 });
26 };
这是我的服务(有问题的添加功能是在底部)
(function(angular) {
'use strict';
angular.module('codesApp').service('CommentService', function(FBURL, $q, $firebase) {
var commentRef = new Firebase(FBURL).child('comments');
var fireComment = $firebase(commentRef);
return {
childAdded: function childAdded(limitNumber, cb) {
commentRef.startAt().limit(limitNumber).on('child_added', function(snapshot) {
var val = snapshot.val();
cb.call(this, {
user: val.user,
text: val.text,
name: snapshot.name()
});
});
},
add: function addComment(comment) {
return fireComment.$add(comment);
},
....
我整晚都被困在这里。任何帮助都非常感谢!谢谢!
答案 0 :(得分:3)
$ firebase(commentRef)只能让你到一个可以调用$ add()的firebase数组的一半。
你必须另外在$ firebase(commentRef)的返回值上调用$ asArray(),如下所示:
var fireCommentArray = $firebase(commentRef).$asArray();
然后你可以
fireCommentArray.$add(comment)