TypeError: firebase.storage(...).ref(...).once is not a function during retrive the images from Firebase in AngularJS? -


i have retirive image firebase firebase in angularjs got error?

//get images firebase  $scope.getimages = function() {    firebase.storage().ref('user/image').once('value').then(function(snapshot) {      var value = snapshot.val();    })  }
<div class="pull-right">      <input type="submit" name="sumbit" value="submit" ng-click="getimages()">  </div>

enter image description here


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -