Django request.POST.get()返回None。

问题描述 投票:0回答:1

我面临一个问题,我找不到解决办法。

我试图在登录后重定向到上一个页面。不知何故,当提交后试图request.POST.get()时,下一个=request.path返回none。

这是我的Html代码,它将用户引导到登录页面,将request.path作为 "登录后的下一页 "的值。

{% if user.is_authenticated %}
    <button class="btn" data-toggle="modal" data-target="#inquiryModal">
      <a class="btn btn-primary border rounded-0" 
         role="button" href="#">Make an Inquiry</a>
    </button>
{% else %}
     <a class="btn btn-primary border rounded-0" role="button" 
        href="{% url 'login' %}?next={{ request.path|urlencode }}"
                        >Make An Inquiry</a>
{% endif %}

这是登录页面的html代码。

<div class="login-clean" style="background-color: #fff;">
    <form action="{% url 'login' %}" method="POST">
        {% csrf_token %}

        <!--- ALERTS -->
        {% include 'partials/_alerts.html' %}

        <div class="form-group">
             <input class="form-control" type="email" name="email" placeholder="Email"></div>
        <div class="form-group">
             <input class="form-control" type="password" name="password" placeholder="Password">
        </div>
        <div class="form-group">
             <button class="btn btn-primary btn-block" type="submit">Log In</button>
        </div>
     </form>
</div>

View.py文件

def login(request):
    if request.method == 'POST':
        email = request.POST['email']
        password = request.POST['password']
        valuenext = request.POST.get('next')


        print(valuenext)

        user = auth.authenticate(username=email, password=password)

        # if user is found and not from listing page login and redirect to dashboard
        if user is not None and valuenext == "":
            auth.login(request, user)
            messages.success(request, 'You are now succesfully logged in')
            return redirect('dash_inquiries')

        # if user is found and from specific listing page login and redirect to the listing
        elif user is not None and valuenext != "":
            auth.login(request, user)
            print("success")
            messages.success(request, 'You are now logged in')
            return redirect(valuenext)

        else: 
            messages.error(request, 'Invalid credentials')
            return redirect('login')

    else:
        return render(request, 'accounts/login.html')

我到底做错了什么?当引导到登录页面时,下一个值是在url中传递的,但我的后台似乎没有正确地get()下一个值,因为它一直返回None。

先谢谢你了。

python django urlencode django-request
1个回答
0
投票

点击下面的按钮会发送一个 GET 请求。

<a class="btn btn-primary border rounded-0" role="button" 
    href="{% url 'login' %}?next={{ request.path|urlencode }}">Make An Inquiry</a>

这个get请求将呈现 accounts/login.html 模板。

你在解析 request.POST.get('next') 对于 POST 只请求。但没有下一个

<form action="{% url 'login' %}" method="POST"> 

你需要你的 form 标签的样子

<form action="{% url 'login' %}next={{ next }}" method="POST">

为了解决上述问题,你需要将'next'解析为 request.GET,并将其添加到 context 为回应。

if request.method == 'POST':
    # handle POST
else:
    next = request.GET.get('next', '')
    context = {'next': next}
    return render(request, 'accounts/login.html', context=context)

然后,加上这个 next 变成 form.action.

<form action="{% url 'login' %}next={{ next }}" method="POST">

0
投票

好吧,所以我没有确保我把下一个值传到登录表单中,因此解决方案是添加一个隐藏的输入来获取请求中的下一个值。

<input type="hidden" name="next" value="{{ request.GET.next }}" />
© www.soinside.com 2019 - 2024. All rights reserved.