Following codebase used to work with firebase 2.3.1 and Angularfire 1.1.3
Var fb = new firebase("https://database name.firebaseio.com");
var fbObj = $firebaseObject(fb.child("users/" + userId));
I upgraded to firebase3.0 and Angularfire 1.2.
As a result, here is how the above code got modified:
var config = {/* ... */};
firebase.initializeApp(config);
var fb = firebase.database().ref();
var fbObj = $firebaseObject(fb.child("users/" + userId))
The above code however threw error such as a.ref is not a function when instantiating fbObj.
Please suggest.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…