在TastyPie obj_create在我的表單驗證之前運行,它似乎被跳過,爲什麼?Django obj_create在我的表單驗證之前運行
我的代碼
class AccountCreateResource(ModelResource):
class Meta:
queryset = CompanyUser.objects.all()
resource_name = 'accounts/create'
allowed_methods = ['post']
validation = FormValidation(form_class=UserCreationForm)
def obj_create(self, bundle, request=None, **kwargs):
CompanyUser.objects.create_user(email=bundle.data['email'],
company=bundle.data['company'],
password=bundle.data['company'])
請添加代碼,在使用這種形式。 – Nik