作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习 AngularJS 的在线教程。其中有几个更新修改了新版本的 angularfire 或 firebase 的代码:
然而,在输入这些代码后,一切都开始失败。
//For Post.js
var posts = $firebase(ref);
//var posts = $firebase(ref).$asArray(); this gives error
//For Postview.js
$scope.post = Post.find($stateParams.postId);
//$scope.post = Post.find($stateParams.postId).$asArray(); gives error when transit
还有一些变化,例如:
<!--For HTML -->
<div class="post row" ng-repeat="(postId, post) in posts">
<!-- <div class="post row" ng-repeat="post in posts"> gives error-->
没有显示任何内容,并且与 Firebase 通信时似乎出现了问题。
F12 显示错误为:“TypeError:未定义不是函数”。
有什么想法吗?是因为 angularfire 或 firebase 的版本吗?
最佳答案
您的数据库查询可能没有返回任何数据吗?当您尝试调用 null 对象的方法时,通常会发生这种错误(undefined is not a function
)。
关于javascript - AngularJS 和 Firebase 教程 : 'TypeError: undefined is not a function;' issue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26081181/
我是一名优秀的程序员,十分优秀!