0

我正在尝试使用一点 ajax 制作登录表单。当用户填写错误的密码/用户名组合时,错误消息会使用 sijax 添加到页面中:

这是我的两种方法:
1) Sijax 方法

@staticmethod
def login(obj_response, uname, password):
    # Verify the user.
    username = uname.strip()
    password = password.strip()
    user = User.query.filter_by(username = username).first()

    if user is None:
        error = 'Invalid username/password combination'
    elif password != user.password:
        error = 'Invalid username/password combination'

    # Log the user in if the info is correct.
    else:
        login_user(user)
        session['logged_in'] = True 
        obj_response.redirect(url_for('user_home'))

    # Clear the previous error message.
    obj_response.script("$('#errormessage').remove();")

    # Add an error message to the html if there is an error.
    obj_response.html_append(".loginform", "<h4 id='errormessage'>" + error + "</h4>") 

2)python方法:

@app.route('/login', methods=['GET', 'POST'])
def login():
if g.sijax.is_sijax_request:
    # The request looks like a valid Sijax request
    # Let's register the handlers and tell Sijax to process it
    g.sijax.register_object(SijaxHandler)
    return g.sijax.process_request()

return render_template('login.html')

我想要知道的是检查用户名/密码组合是否正确,如果它没有使用 ajax 显示错误消息,但如果是,则将用户重定向到他的主页(url_for('userhome'))。

我正在尝试使用 sijax 方法知道它:obj_response.redirect(url_for('user_home')) 但这不起作用。

有任何想法吗?

我收到此错误: obj_response.html_append(".loginform", "" + error + "") UnboundLocalError: local variable 'error' referenced before assignment

4

1 回答 1

0

问题是您总是使用error但仅在出现错误时才定义它。

简单的解决方案:在该行error = None之前添加。if user is None:除此之外,仅在出现错误时创建错误消息元素:

if error:
    obj_response.html_append(".loginform", "<h4 id='errormessage'>" + error + "</h4>") 
于 2012-12-23T13:35:30.790 回答