或多或少,我正处于开发使用 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'),
)