flask hangs right before return jsonify ((no output error ))
up vote
0
down vote
favorite
I'm a new dev , I've made a page that check if user is logged on load and if he is it replace the login forms with some other data from the server
on the other hand if not it shows the login forms and wait for the user to click login to trigger another ajax to verify and pull user info and return Json object with it .
the problem occurs Right before the return line - i traced back the problem with print and log on js , everything works fine before the return jsonify line
the weird part is it never raises any error it just hangs
def clogin():
print(f"n login activated n")
if request.method == "POST":
loginName = request.form.get("memberNameid")
loginPw = request.form.get("passwordloginid")
#session['user'] = loginName
f = Users.query.filter_by(email=loginName).first()
login_user(f)
session['user'] = f
print(f"I have receved this from AJAX ... n n loginName = loginName n loginPw = loginPw n current_user = current_user n current_user.id = current_user.id n current_user.name = current_user")
print(f"f.email = f.email n f.pw = f.password")
if f:
qdisplayname = f.name
print("qdisplayname = ",qdisplayname)
if f.email == loginName: #and sha256_crypt.verify(loginPw,f.qpw):
if f.pos == "pos2":
print("pos : pos 2 was picked ")
return jsonify("Success": True , "Msg":" lets try to get jinja to work - email current_user.email " , "position" : "Pharmacist" , "displayname":current_user.name )
here is CMD output :
login activated
I have receved this from AJAX ...
loginName = qwe@qwe.qwe
loginPw = qwe
current_user = <Users 1>
current_user.id = 1
current_user.name = <Users 1>
f.email = qwe@qwe.qwe
f.pw = qwe
qdisplayname = name2
pos : pos 2 was picked
please let me know if you have any idea what makes flask hangs like this ?
i cant even refresh or navigate to a different page i have to shutdown the server
json ajax python-3.x flash flask-login
add a comment |
up vote
0
down vote
favorite
I'm a new dev , I've made a page that check if user is logged on load and if he is it replace the login forms with some other data from the server
on the other hand if not it shows the login forms and wait for the user to click login to trigger another ajax to verify and pull user info and return Json object with it .
the problem occurs Right before the return line - i traced back the problem with print and log on js , everything works fine before the return jsonify line
the weird part is it never raises any error it just hangs
def clogin():
print(f"n login activated n")
if request.method == "POST":
loginName = request.form.get("memberNameid")
loginPw = request.form.get("passwordloginid")
#session['user'] = loginName
f = Users.query.filter_by(email=loginName).first()
login_user(f)
session['user'] = f
print(f"I have receved this from AJAX ... n n loginName = loginName n loginPw = loginPw n current_user = current_user n current_user.id = current_user.id n current_user.name = current_user")
print(f"f.email = f.email n f.pw = f.password")
if f:
qdisplayname = f.name
print("qdisplayname = ",qdisplayname)
if f.email == loginName: #and sha256_crypt.verify(loginPw,f.qpw):
if f.pos == "pos2":
print("pos : pos 2 was picked ")
return jsonify("Success": True , "Msg":" lets try to get jinja to work - email current_user.email " , "position" : "Pharmacist" , "displayname":current_user.name )
here is CMD output :
login activated
I have receved this from AJAX ...
loginName = qwe@qwe.qwe
loginPw = qwe
current_user = <Users 1>
current_user.id = 1
current_user.name = <Users 1>
f.email = qwe@qwe.qwe
f.pw = qwe
qdisplayname = name2
pos : pos 2 was picked
please let me know if you have any idea what makes flask hangs like this ?
i cant even refresh or navigate to a different page i have to shutdown the server
json ajax python-3.x flash flask-login
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm a new dev , I've made a page that check if user is logged on load and if he is it replace the login forms with some other data from the server
on the other hand if not it shows the login forms and wait for the user to click login to trigger another ajax to verify and pull user info and return Json object with it .
the problem occurs Right before the return line - i traced back the problem with print and log on js , everything works fine before the return jsonify line
the weird part is it never raises any error it just hangs
def clogin():
print(f"n login activated n")
if request.method == "POST":
loginName = request.form.get("memberNameid")
loginPw = request.form.get("passwordloginid")
#session['user'] = loginName
f = Users.query.filter_by(email=loginName).first()
login_user(f)
session['user'] = f
print(f"I have receved this from AJAX ... n n loginName = loginName n loginPw = loginPw n current_user = current_user n current_user.id = current_user.id n current_user.name = current_user")
print(f"f.email = f.email n f.pw = f.password")
if f:
qdisplayname = f.name
print("qdisplayname = ",qdisplayname)
if f.email == loginName: #and sha256_crypt.verify(loginPw,f.qpw):
if f.pos == "pos2":
print("pos : pos 2 was picked ")
return jsonify("Success": True , "Msg":" lets try to get jinja to work - email current_user.email " , "position" : "Pharmacist" , "displayname":current_user.name )
here is CMD output :
login activated
I have receved this from AJAX ...
loginName = qwe@qwe.qwe
loginPw = qwe
current_user = <Users 1>
current_user.id = 1
current_user.name = <Users 1>
f.email = qwe@qwe.qwe
f.pw = qwe
qdisplayname = name2
pos : pos 2 was picked
please let me know if you have any idea what makes flask hangs like this ?
i cant even refresh or navigate to a different page i have to shutdown the server
json ajax python-3.x flash flask-login
I'm a new dev , I've made a page that check if user is logged on load and if he is it replace the login forms with some other data from the server
on the other hand if not it shows the login forms and wait for the user to click login to trigger another ajax to verify and pull user info and return Json object with it .
the problem occurs Right before the return line - i traced back the problem with print and log on js , everything works fine before the return jsonify line
the weird part is it never raises any error it just hangs
def clogin():
print(f"n login activated n")
if request.method == "POST":
loginName = request.form.get("memberNameid")
loginPw = request.form.get("passwordloginid")
#session['user'] = loginName
f = Users.query.filter_by(email=loginName).first()
login_user(f)
session['user'] = f
print(f"I have receved this from AJAX ... n n loginName = loginName n loginPw = loginPw n current_user = current_user n current_user.id = current_user.id n current_user.name = current_user")
print(f"f.email = f.email n f.pw = f.password")
if f:
qdisplayname = f.name
print("qdisplayname = ",qdisplayname)
if f.email == loginName: #and sha256_crypt.verify(loginPw,f.qpw):
if f.pos == "pos2":
print("pos : pos 2 was picked ")
return jsonify("Success": True , "Msg":" lets try to get jinja to work - email current_user.email " , "position" : "Pharmacist" , "displayname":current_user.name )
here is CMD output :
login activated
I have receved this from AJAX ...
loginName = qwe@qwe.qwe
loginPw = qwe
current_user = <Users 1>
current_user.id = 1
current_user.name = <Users 1>
f.email = qwe@qwe.qwe
f.pw = qwe
qdisplayname = name2
pos : pos 2 was picked
please let me know if you have any idea what makes flask hangs like this ?
i cant even refresh or navigate to a different page i have to shutdown the server
json ajax python-3.x flash flask-login
json ajax python-3.x flash flask-login
asked Nov 10 at 1:24
za001a
96
96
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53235231%2fflask-hangs-right-before-return-jsonify-no-output-error%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown