4

或多或少,我正处于开发使用 Django Rest Framework 和 Angular 的应用程序的早期阶段。我决定使用django-rest-auth来管理我的所有用户与我的应用程序的集成。

由于我是 Angular 的新手,我不想使用 django-rest-auth Boilerplate Angular 应用程序来理解 Angular 的概念。我只想使用 django-rest-auth 端点。

问题是: 我的注册表通过内部服务器 500 即使我的数据已传递并成功提交给 django.User 模型。

这是我的 Angular 应用程序:

// MODULE

var menuApp = angular.module('menuApp', ['ngRoute', 'ngCookies']);

//ROUTES
menuApp.config(function ($locationProvider, $routeProvider) {

$locationProvider.html5Mode({
enabled: true,
requireBase: false,
    hashPrefix:'!'
})

$routeProvider

.when('/', {
    templateUrl: '/static/app/pages/login.html',
    controller: 'homeCtrl'
})
.when('/register', {
    templateUrl: 'static/app/pages/register.html',
    controller: 'registerCtrl'
})

 menuApp.controller('homeCtrl', ['$log', '$scope', function($log,    $scope) {
        $log.info("homeCtrl is called ");
}]);

 menuApp.controller('registerCtrl', ['$scope', '$cookies', '$http','$location',
                                                function($scope, $cookies, $http, $location) {

        console.log("registerCtrl is called");

        $scope.register = function(email, username, password){
        var data = {
            'username': username,
            'password1': password,
            'password2': password,
            'email': email
        }
        console.log(data)

        var make_registration = $http({
                url: "/api/rest-auth/registration/",
                method: "POST",
                headers: {
                    'X-CSRFToken': $cookies.token,
                    'Content-Type': 'application/json'},
                data: data,
                    })
        .success(function(data, status, headers) {
            console.log($cookies.csrftoken)
            console.log(data);
            console.log(status);
            console.log(headers);
        })
        .error(function(data, status, headers) {
                            // Need a minimal function to pass the errors
                            console.log(status);
                            console.log(data);
        });
        return make_registration
            }

   }]);

  // RUN
 menuApp.run(function ($http) {
    $http.defaults.xsrfHeaderName = 'X-CSRFToken';
    $http.defaults.xsrfCookieName = 'csrftoken';
 });

我的表单是一个非常简单的表单,有一个 'ng-submit="register(email, username, password)' 和 3 个输入 ng-model='email' 等。

我的网址

urlpatterns = patterns('',

 url(r'^admin/', include(admin.site.urls)),
 url(r'^api/rest-auth/', include('rest_auth.urls')),
 url(r'^api/rest-auth/registration/',
        include('rest_auth.registration.urls')),
 url('^.*$', IndexView.as_view(), name='index'),
)
4

2 回答 2

5

我遇到了完全相同的问题,结果是在django-allauth尝试发送确认电子邮件时引发了 500 内部错误,但由于我没有运行 STMP 服务器而失败。

假设您的问题与我的类似,只需在您的settings.py:

EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
于 2016-01-27T16:33:20.763 回答
0

你需要django-allauth注册才能工作。

来自文档

注册(可选)

如果您想启用标准注册过程,您将需要安装-django-allauth请参阅此doc安装 Add allauth和应用程序在您的settings.py 中:allauth.accountrest_auth.registrationINSTALLED_APPSdjango

于 2015-11-29T20:33:12.557 回答