Coder Social home page Coder Social logo

Comments (4)

websanova avatar websanova commented on August 29, 2024

Well it does a anew fetch to server on refresh

On Aug 27, 2016 21:04, "FerchoCarcho" [email protected] wrote:

I dont know if that is the purpose of Install function but the fact is
when I login
this.$auth.login(this.user, false, '/index');
Im being redirected correctly, then I refresh the page but the function
install is being called again and the $auth.data gets lost. set to null.

return function install (Vue, options, router) {
var auth = new Vue(Auth)
console.log('installing auth');
console.log('from install' , auth.$data);
auth.setOptions(options || {})
Object.defineProperties(Vue.prototype, {
$auth: {
get () {
_setRoute.call(auth, this.$route, this.$router)
return auth
}
}
});`
.....

[image: untitled-1]
https://cloud.githubusercontent.com/assets/11180135/18030952/cf4a9ab8-6c98-11e6-993c-8ca5123ccc8f.jpg

I have the following at main.js

var Vue = require('vue');
var VueRouter = require('vue-router');
var resource = require('vue-resource');
Vue.config.debug = true;
Vue.use(resource);
Vue.use(VueRouter);
import App from './App.vue'

var router = new VueRouter(
{
hashbang: false,
history: true,
linkActiveClass: "active",
root: 'manage'
}
);

router.mode ='html5';

router.map({

'/login':{
    component: require('./be-views/login.vue'),
    auth:false
},
'/register': {
    component: require('./be-views/register.vue'),
    auth:false
},
'/logout': {
    component: require('./be-views/logout.vue'),
    auth: true
},
'/index': {
    component: require('./be-views/index.vue'),
    auth: true,
    subRoutes: {
        '/': {
            component: require('./be-views/home.vue'),
            auth: true
        }
    }
},
 '*': {
    component: require('./be-views/404.vue')
}

});

router.alias({
'/':'/index'
});

Vue.use(require('vue-jwt-auth'),
{ fetchUrl:'/api/me',
loginUrl: '/api/login',
notFoundRedirect: '/index',
tokenUrl: '/api/refresh'}, router);

router.start(App,'body');


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
#14, or mute the thread
https://github.com/notifications/unsubscribe-auth/ABkcyx-zQ_gWl8ytA2XJnGxvUucMv8OEks5qkN58gaJpZM4Ju0cZ
.

from vue-auth.

FerchoCarcho avatar FerchoCarcho commented on August 29, 2024

Saying that I adopted @ghprod Fix it wasnt quite good because when function fetch is called and _fetch.call(this, cb) should be called on every refesh that fix wasnt doing the job. But Im having another issue that im debugging right now.

from vue-auth.

FerchoCarcho avatar FerchoCarcho commented on August 29, 2024

@ghprod fix is working, I was having a mistake when refreshing the token, wrong Endpoint

from vue-auth.

icangku avatar icangku commented on August 29, 2024

@FerchoCarcho i still have same issue, do you mind to help me?

from vue-auth.

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.