我正在使用 Flask 作为我的后端,而 jQuery 用于我正在从事的个人项目。
要登录我想这样做:
$.ajax({
type: "POST",
data: JSON.stringify(body), //username and password
contentType: 'application/json; charset=utf-8',
url: "/login",
success: successFunction,
error: errorFunction,
complete: completeFunction
});
在 errorFuction 中,我会告诉用户他们的用户名或密码不正确等。
在后端我的 /login 路线看起来像这样
@app.route("/login", methods=['GET', 'POST'])
def login():
if(request.method == "POST"):
#retrieve the username and password sent
data = request.json
if(data is None or not 'username' in data or not 'password' in data):
abort(400)
else:
count = User.query.filter(User.username == data['username']).count()
if(count == 0):
abort(404) #that user doesnt exist
else:
passIsCorrect = User.query.filter(User.username == data['username'],
User.password == data['password']).count()
if(passIsCorrect):
session['user'] = data['username']
return redirect(url_for('index'))
else:
abort(401)
else:
return render_template('login.html')
但是在客户端,浏览器不会重定向,如果我查看完整函数中的响应对象,我会看到通常从我的“/”路由返回的内容:200 OK 和 index.html 模板。
我的问题是:
有什么方法可以拦截使客户端重定向吗?
我认为问题是因为 jquery 正在启动请求而不是浏览器。
我解决此问题的第一次尝试是自己使用make_response
并设置 Location 标头来构建响应,但这导致了相同的行为。我目前的解决方案是返回 200 然后客户端返回window.location = "/"
,但这似乎很hacky