- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试根据默认 User 对象的 id 创建编码的 id 字段,但收到以下错误(完整跟踪):
Traceback (most recent call last):
File "manage.py", line 22, in <module>
execute_from_command_line(sys.argv)
File "/Users/default_user/Documents/pumac3/venv/lib/python2.7/site-packages/django/core/management/__init__.py", line 367, in execute_from_command_line
utility.execute()
File "/Users/default_user/Documents/pumac3/venv/lib/python2.7/site-packages/django/core/management/__init__.py", line 341, in execute
django.setup()
File "/Users/default_user/Documents/pumac3/venv/lib/python2.7/site-packages/django/__init__.py", line 27, in setup
apps.populate(settings.INSTALLED_APPS)
File "/Users/default_user/Documents/pumac3/venv/lib/python2.7/site-packages/django/apps/registry.py", line 108, in populate
app_config.import_models(all_models)
File "/Users/default_user/Documents/pumac3/venv/lib/python2.7/site-packages/django/apps/config.py", line 199, in import_models
self.models_module = import_module(models_module_name)
File "/usr/local/Cellar/python/2.7.12/Frameworks/Python.framework/Versions/2.7/lib/python2.7/importlib/__init__.py", line 37, in import_module
__import__(name)
File "/Users/default_user/Documents/pumac3/pumac3/registration/models.py", line 52, in <module>
class Coach(models.Model):
File "/Users/default_user/Documents/pumac3/pumac3/registration/models.py", line 61, in Coach
user_id = models.CharField(max_length=254, default=urlsafe_base64_encode(force_bytes(user.id)))
AttributeError: 'OneToOneField' object has no attribute 'id'
我的 models.py
中的 Coach 模型如下所示:
class Coach(models.Model):
user = models.OneToOneField(User, unique=True)
# Sets default user values
user.is_active = False
# For account activation and password resetting
user_timestamp = models.IntegerField(default=int(time.time()))
user_id = models.CharField(max_length=254, default=urlsafe_base64_encode(force_bytes(user.id)))
user_token = models.CharField(max_length=254, default=default_token_generator.make_token(user))
name = models.CharField(max_length=100)
phone_number = models.CharField(max_length=20)
class Meta:
verbose_name_plural = "Coaches"
ordering = ['name']
def __unicode__(self):
"""Returns the name of the coach if has name, otherwise returns email."""
if self.name:
return self.name
else:
return self.user.email
def update_token(self):
"""Updates the user_token and timestamp for password reset or invalid activation"""
self.user_timestamp = int(time.time())
self.user_token = default_token_generator.make_token(user)
self.save()
@staticmethod
def is_coach(user):
return hasattr(user, 'coach')
@staticmethod
def authorized(user):
"""Returns a queryset of Coach objects the user can view and modify."""
if hasattr(user, 'coach'):
# check that the user is a coach
return user.coach
@staticmethod
def authorized_organizations(user):
"""
Returns a queryset of organizations the user can view and modify.
"""
if hasattr(user, 'coach'):
return user.coach.organizations.all()
我尝试过查看与我的类似的其他问题,但是该人指定了主键,因此 Django 没有创建默认的 id
字段。但是,我没有在 Coach
模型中执行此操作,即使是这样,Django 默认 User 模型不应该包含 id
属性吗?
我怀疑问题在于 id
字段仅在实际创建 User
实例之后才存在,因此我无法为 user_id< 创建值
。在创建 User
类的实例后,我是否应该在 models.py
之外实例化该值?
最佳答案
您不能在类的顶层代码中使用实例数据。在代码运行时(导入时),还没有实例。如果要使用计算数据初始化实例,请覆盖该类的 __init__ 方法。
关于python - Django 'OneToOneField' 对象没有属性 'id',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42106898/
你能比较一下属性吗 我想禁用文本框“txtName”。有两种方式 使用javascript,txtName.disabled = true 使用 ASP.NET, 哪种方法更好,为什么? 最佳答案 我
Count 属性 返回一个集合或 Dictionary 对象包含的项目数。只读。 object.Count object 可以是“应用于”列表中列出的任何集合或对
CompareMode 属性 设置并返回在 Dictionary 对象中比较字符串关键字的比较模式。 object.CompareMode[ = compare] 参数
Column 属性 只读属性,返回 TextStream 文件中当前字符位置的列号。 object.Column object 通常是 TextStream 对象的名称。
AvailableSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。 object.AvailableSpace object 应为 Drive 
Attributes 属性 设置或返回文件或文件夹的属性。可读写或只读(与属性有关)。 object.Attributes [= newattributes] 参数 object
AtEndOfStream 属性 如果文件指针位于 TextStream 文件末,则返回 True;否则如果不为只读则返回 False。 object.A
AtEndOfLine 属性 TextStream 文件中,如果文件指针指向行末标记,就返回 True;否则如果不是只读则返回 False。 object.AtEn
RootFolder 属性 返回一个 Folder 对象,表示指定驱动器的根文件夹。只读。 object.RootFolder object 应为 Dr
Path 属性 返回指定文件、文件夹或驱动器的路径。 object.Path object 应为 File、Folder 或 Drive 对象的名称。 说明 对于驱动器,路径不包含根目录。
ParentFolder 属性 返回指定文件或文件夹的父文件夹。只读。 object.ParentFolder object 应为 File 或 Folder 对象的名称。 说明 以下代码
Name 属性 设置或返回指定的文件或文件夹的名称。可读写。 object.Name [= newname] 参数 object 必选项。应为 File 或&
Line 属性 只读属性,返回 TextStream 文件中的当前行号。 object.Line object 通常是 TextStream 对象的名称。 说明 文件刚
Key 属性 在 Dictionary 对象中设置 key。 object.Key(key) = newkey 参数 object 必选项。通常是 Dictionary 
Item 属性 设置或返回 Dictionary 对象中指定的 key 对应的 item,或返回集合中基于指定的 key 的&
IsRootFolder 属性 如果指定的文件夹是根文件夹,返回 True;否则返回 False。 object.IsRootFolder object 应为&n
IsReady 属性 如果指定的驱动器就绪,返回 True;否则返回 False。 object.IsReady object 应为 Drive&nbs
FreeSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。只读。 object.FreeSpace object 应为 Drive 对象的名称。
FileSystem 属性 返回指定的驱动器使用的文件系统的类型。 object.FileSystem object 应为 Drive 对象的名称。 说明 可
Files 属性 返回由指定文件夹中所有 File 对象(包括隐藏文件和系统文件)组成的 Files 集合。 object.Files object&n
我是一名优秀的程序员,十分优秀!