最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Parse, Check to See If User is Logged In - Stack Overflow

programmeradmin4浏览0评论

I want to check to see if my user is logged in, at the moment I am using

if(currentUser == null) { window.location.replace("login.html"); }

to redirect my user to the login page. But I've seen tutorials where user's wrap the full code in a if(currentUser) {...} instead.

I was also intriguied by Parse's authenticated() but the documentation doesn't really specify how to use it, other than state that it returns a boolean.

I just wanted to know if either one of these three is faster/more efficient than the other, and if parse's auth is, I'd like to know how that works.

And I am looking to redirect the user back to the login.html page if he is not logged in.

Thanks!

I want to check to see if my user is logged in, at the moment I am using

if(currentUser == null) { window.location.replace("login.html"); }

to redirect my user to the login page. But I've seen tutorials where user's wrap the full code in a if(currentUser) {...} instead.

I was also intriguied by Parse's authenticated() but the documentation doesn't really specify how to use it, other than state that it returns a boolean.

I just wanted to know if either one of these three is faster/more efficient than the other, and if parse's auth is, I'd like to know how that works.

And I am looking to redirect the user back to the login.html page if he is not logged in.

Thanks!

Share Improve this question edited Sep 12, 2016 at 13:17 NotToBrag asked Sep 22, 2014 at 10:32 NotToBragNotToBrag 6651 gold badge17 silver badges37 bronze badges 1
  • add a tag for the language – Lukesivi Commented Nov 28, 2015 at 12:33
Add a ment  | 

2 Answers 2

Reset to default 7

I assume Javascript - The introduction docs are good enough

    var currentUser = Parse.User.current();
if (currentUser) {
    // do stuff with the user
} else {
    // show the signup or login page
}

This is copied from the docs

You might want to check if the session is actually valid too. User might be logged in but session might have expired (or account hacked).

One way to achieve this would be to query an object in Parse and catch error 209. If caught, you could log the user out and pop the nav controller back to login screen.

Take a look at this answer.

发布评论

评论列表(0)

  1. 暂无评论