1

错误发生在这里:

if request.method == 'POST':
        form = RegisterForm(request.POST)
        if form.is_valid():
            clean = form.cleaned_data

            username = clean['username']
            email = clean['email']
            password = clean['password']
            new_user = User.objects.create_user(username, email, password)
            new_user.save()
            new_account = Account(user=new_user, email=email)
            new_account.save()

在线username = clean['username']上。我已经能够在其他地方成功使用这条确切的线路而没有问题。为什么现在是个问题?

4

2 回答 2

4

您可能从表单的clean()方法中返回了错误的内容 - 您应该返回完整的self.cleaned_data字典。

于 2012-04-27T19:07:46.897 回答
2

显然cleaned_data是给你一个字符串,而不是字典。

由于字符串只能按数字索引,因此会出现此错误。

尝试打印该值以查看发生了什么。

于 2012-04-27T19:02:23.100 回答