或多或少,我正处于开发使用Django Rest Framework和Angular的应用程序的早期阶段。 我决定使用django-rest-auth来管理我的应用与用户的所有集成。
由于我是Angular的新手,我不想使用django-rest-auth Boilerplate Angular应用程序来理解Angular的概念。我只想使用django-rest-auth端点。
问题是: 我的注册表通过内部服务器500,即使我的数据已通过并成功提交给django.User模型。
这是我的Angular ap p:
// 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 ="注册表(电子邮件,用户名,密码)'和3输入ng-model ='电子邮件'等
我的网址:
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'),
)
答案 0 :(得分:2)
我遇到了完全相同的问题,结果发现当django-allauth
尝试发送确认电子邮件时引发了500内部错误,但由于我没有运行STMP服务器而失败。
假设您的问题与我的问题类似,只需在settings.py
上添加此行:
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
答案 1 :(得分:0)
您需要django-allauth
才能注册工作。
来自文档
注册(可选)
如果您要启用标准注册流程,则需要安装django-allauth
- 请参阅此doc
进行安装
Add allauth
settings.py中的allauth.account
,rest_auth.registration
和INSTALLED_APPS
个应用django
个: