Django的 - 阿贾克斯模式登录/注册模式、Django、阿贾克斯

2023-09-11 00:46:36 作者:春风不识路

我有一个项目中,我需要弹出一个模态窗口为未通过身份验证的用户。

I have a project in which I need to pop a modal window for not authenticated users.

此模式将允许直接登录或创建一个帐户。

This modal will allow to login directly or create an account.

那么它将包含两种形式:

So it will contain two forms:

django.contrib.auth.forms.AuthenticationForm registration.forms.RegistrationForm django.contrib.auth.forms.AuthenticationForm registration.forms.RegistrationForm

下面是我的看法得到两种形式:

Here is my view to get both forms:

def ajax_registration(request):
    obj = {
        'login_form': AuthenticationForm(),
        'registration_form': RegistrationForm(),
    }
    return render(request, 'common/ajax_registration.html', obj)

和我的模板显示表单标签

And my template displaying the forms tabbed

<ul class="nav nav-tabs">
  <li><a href="#tab1" data-toggle="tab">{% trans 'Login' %}</a></li>
  <li><a href="#tab2" data-toggle="tab">{% trans 'Registration' %}</a></li>
</ul>
<div class="tab-content">
  <div class="tab-pane active" id="tab1">
    {{ login_form|bootstrap }}
  </div>
  <div class="tab-pane" id="tab2">
    {{ registration_form|bootstrap }}
  </div>
</div>

问题是:由于我使用AJAX来显示这个模式,我如何可以验证所选择的形式,preferably使用已经写django-registrations注册 和放大器; django.contrib.auth登录 看法?

Question is: Since I'm using ajax to display this modal, How can I validate the selected form, preferably using the already written django-registrations register & django.contrib.auth login views ?

推荐答案

在除了Maddog的答案,你需要一些JavaScript提交表单回到那个呈现的形式的URL。使用jQuery它可能是这样的:

In addition to Maddog's answer you need some javascript to submit the form back to the URL that rendered the form. Using jquery it could be something like:

$('form').submit(function(e){
        e.preventDefault();
        var form = $(e.target);

        $.ajax({
            url: '{% url YOUR_REGISTRATION_URL %}',
            type: 'post',
            data: account_form.serialize() + '&' + form.serialize(),
            error: function(xhr, ajaxOptions, thrownError){ alert(thrownError); },
            success: function(){}
        })
 })

您并不需要用表格做提交的元素,你可以使用任何元素与$()。点击(当然)。

You don't need to do it with a form submit element, you could use any element with $().click(), of course.