No Talk login:

优秀的“缜密逻辑”---talk is cheap,show me the code.
~pyhton
@app.route('/login', methods=['POST', 'GET'])
def login():
error = None
if request.method == 'POST':
if valid_login(request.form['username'],
request.form['password']):
return log_the_user_in(request.form['username'])
else:
error = 'Invalid username/password'
# the code below is executed if the request method
# was GET or the credentials were invalid
return render_template('login.html', error=error)
~

猜你喜欢

转载自www.cnblogs.com/scientist/p/12392551.html