GithubHelp home page GithubHelp logo

Comments (5)

mranosa avatar mranosa commented on August 22, 2024

I tried debugging the code and it pointed to this

_safeApply: function($scope, fn) {
    var phase = $scope.$root.$$phase;
    if (phase == '$apply' || phase == '$digest') {
      fn();
    } else {
      $scope.$apply(fn);
    }
  }

When fn(); is called it is undefined, I am to new js so this is as far as I can go for now. I'll try to look at this more later when I wake up

from angularfire.

ThomasWeiser avatar ThomasWeiser commented on August 22, 2024

Maybe fixed with #8.

from angularfire.

mranosa avatar mranosa commented on August 22, 2024

It fixed the undefined problem :) but another issue came out when I tried to add another entry $scope.stores.push($scope.store);. Its saying that push() function does not exist

from angularfire.

ThomasWeiser avatar ThomasWeiser commented on August 22, 2024

See my answer on stackoverflow.

@anantn: In your description of function angularFire you are using the same name items for the value to be bound and the promise of binding it:

$scope.items = angularFire(url, $scope, 'items', []);

I think it would be less confusing to use two distinct identifiers, like

$scope.bound = angularFire(url, $scope, 'items', []);
$scope.bound.then (function () {
    $scope.items.push ( ... );
});

from angularfire.

mranosa avatar mranosa commented on August 22, 2024

its fixed! :) I had to revert my code back to implicit sync to check, changed to explicit to make everything work before I tested this. Thanks a lot! :) I am new to this stuff and its taking quite awhile for me to learn. Cheers!

from angularfire.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.