加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

python – 在Django中验证模型时出现未处理的异常

发布时间:2020-12-20 11:37:44 所属栏目:Python 来源:网络整理
导读:我在编写我正在编写的Django Web应用程序的代码时遇到错误 在控制台中,它显示: Validating models...Unhandled exception in thread started by function check_errors.locals.wrapper at 0x028A2BB8 控制台中的错误跟踪直到我的程序中的错误位置 File "C:
我在编写我正在编写的Django Web应用程序的代码时遇到错误

在控制台中,它显示:

Validating models...
Unhandled exception in thread started by <function check_errors.<locals>.wrapper at 0x028A2BB8>

控制台中的错误跟踪直到我的程序中的错误位置

File "C:Uni WorkR&DyellowProjectteamListmodels.py",line 9,in <module>
class UserTeamEntry(models.Model):
File "C:Python34libsite-packagesdjangodbmodelsbase.py",line 144,in __new__
new_class.add_to_class(obj_name,obj)
File "C:Python34libsite-packagesdjangodbmodelsbase.py",line 264,in add_to_class
value.contribute_to_class(cls,name)
TypeError: contribute_to_class() missing 1 required positional argument: 'name'

我的models.py:

from django.db import models
from django.contrib.auth.models import User

class UserTeamEntry(models.Model):

    user = models.OneToOneField(User)
    position_choices = (('TEAMMEMBER','Team Member'),('MANAGER','Manager'),)
    userID = models.AutoField(primary_key = True)
    userPosition = models.CharField(max_length = 10,choices = position_choices)
    userShare = models.BooleanField

解决方法

你忘了在BooleanField之后添加括号().所以,添加它们:

userShare = models.BooleanField()

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读