Giter Club home page Giter Club logo

Comments (8)

justinpage avatar justinpage commented on July 2, 2024

@franzsilva you can set vm.user = ''which does the trick, not sure if it's the best method but it's a suggestion.

from mean-machine-code.

yonasstephen avatar yonasstephen commented on July 2, 2024

setting vm.user = '' at logout does not seem to fix the cache. I got the latest copy of code and this bug still persists..

from mean-machine-code.

justinpage avatar justinpage commented on July 2, 2024

@yonasstephen use this as an alternative reference:
https://github.com/KLVTZ/MeanMachine/tree/master/10.user-manag-crm

from mean-machine-code.

yonasstephen avatar yonasstephen commented on July 2, 2024

hey thanks! that version definitely works :) do you mind explaining shortly what was the fix? bcos my version also had the vm.user = '' at logout, but doesn't work.

from mean-machine-code.

justinpage avatar justinpage commented on July 2, 2024

@yonasstephen that's difficult to say without seeing your code. My best suggestion is to diff your angular controllers and services to the repo above and the code examples in the book. My guess is something was overlooked.

from mean-machine-code.

yonasstephen avatar yonasstephen commented on July 2, 2024

I spotted the issue, it's the cache for /api/me should be set to false return $http.get('/api/me', { cache: false });

from mean-machine-code.

justinpage avatar justinpage commented on July 2, 2024

@yonasstephen 👍 glad you found it!

from mean-machine-code.

mir4ef avatar mir4ef commented on July 2, 2024

Yes, setting the cache to false works, but I think a better approach will be to cache the info and clear it on logout:

vm.doLogout = function () {
        // logout code
        $cacheFactory.get('$http').remove('/api/me');
    };

You would need to inject $cacheFactory into your controller though. Just my 2 cents :)

from mean-machine-code.

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.