用户模型的外键

发布于 2024-12-03 09:48:47 字数 312 浏览 0 评论 0原文

我想创建一个新模型,例如:

user_name = models.ForeignKey(u"Username", User),

但是当我尝试同步数据库时,我收到此错误消息:

"AttributeError: 'unicode' object has no attribute '_meta'"

当我查看一些教程时,一切似乎都与我的模型中的相同,并且 _meta 的问题 从未被提及。

I want to create a new model, something like:

user_name = models.ForeignKey(u"Username", User),

but when I try to syncdb, I get this error message:

"AttributeError: 'unicode' object has no attribute '_meta'"

When I look at some tutorials, everything seems to be the same as in my model, and the problem with _meta is never mentioned.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

粉红×色少女 2024-12-10 09:48:47

更安全的方法是使用设置文件中的 AUTH_USER_MODEL 。

示例:

from django.db import models
from django.conf import settings

class Article(models.Model):
    headline = models.CharField(max_length=255)
    article = models.TextField()
    author = models.ForeignKey(settings.AUTH_USER_MODEL)

默认情况下,settings.AUTH_USER_MODEL 引用django.contrib.auth.models.User,无需您执行任何操作。

此方法的优点是,即使您使用自定义用户模型而不进行修改,您的应用也将继续运行。

有关如何使用自定义用户模型的更多信息检查Django 文档的这一部分

A safer way to do this is to use the AUTH_USER_MODEL from the settings file.

Example:

from django.db import models
from django.conf import settings

class Article(models.Model):
    headline = models.CharField(max_length=255)
    article = models.TextField()
    author = models.ForeignKey(settings.AUTH_USER_MODEL)

By default settings.AUTH_USER_MODEL refers to django.contrib.auth.models.User without requiring you to do anything.

The advantage of this approach is that your app will continue to work even if you use a custom user model without modification.

For more information on how to make use of custom user models check out this part of the Django docs

信仰 2024-12-10 09:48:47

你只是想要:

from django.contrib.auth.models import User

class MyModel(models.Model):
    ...
    user = models.ForeignKey(User)
    ...

You just want:

from django.contrib.auth.models import User

class MyModel(models.Model):
    ...
    user = models.ForeignKey(User)
    ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文