我正在学习使用flask登录实现登录功能,我将在教程中面对以下代码:

@app.route('/login', methods = ['GET', 'POST'])
def login():
    if current_user.is_authenticated:
        return redirect(url_for('index'))
    form = LoginForm()
    if form.validate_on_submit():
        user = User.query.filter_by(username=form.username.data).first()
        if user is None or not user.check_password(form.password.data):
            flash('Invalid username or password')
            return redirect(url_for('login'))
        login_user(user, remember=form.remember_me.data)
        next_page = request.args.get('next')
        if not next_page or url_parse(next_page).netloc != '': # what is it means in this line..?
            next_page = url_for('index')
        return redirect(next_page)
    return render_template('login.html', title='Sign In', form=form)

但我不确定我所评论的上面的代码是什么意思…?尤其是在netloc这个词中,那是什么?,我知道这是代表网络位置,但是这条线上的目的是什么….

最佳答案

RFC 1808, Section 2.1开始,每个URL都应该遵循特定的格式:

<scheme>://<netloc>/<path>;<params>?<query>#<fragment>

netloc是第一级域(fld)所表示的内容,它位于路径之前和方案之后。例如,您有以下URL:
http://www.example.com/index?search=src

这里,www.example.com是您的netloc,而index是路径,search是查询参数,src是沿着参数传递的值。
现在,在代码中,search语句检查if是否存在以及next_page是否具有netloc,以便用户可以重定向到您站点的next_page(默认)页面。

关于python - netloc是什么意思?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53992694/

10-08 22:00