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

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -