netloc是什么意思?

时间:2019-01-01 02:30:21

标签: python networking flask flask-login

我正在学习使用 Flask-login 进行登录功能,并且在我正在遵循的教程中遇到此代码:

@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 一词,那是什么..?,我知道这代表网络,但该行的目的是什么??

2 个答案:

答案 0 :(得分:6)

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是否存在以及next_page是否具有netloc,以便可以将用户重定向到{{1} }(默认)页面。

答案 1 :(得分:0)

import urllib.parse
url="https://google.com/something?a=1&b=1"
o = urllib.parse.urlsplit(url)
print(o.netloc)

google.com