Slug 对于与酒吧日期不同的另一个领域来说是独特的?

发布于 2024-09-08 02:25:40 字数 117 浏览 3 评论 0原文

我想知道是否有任何方法可以使 SlugField 对于与发布日期不同的任何字段都唯一?

例如,我想要一个名为“国家”的字段的唯一的鼻涕虫(城市字段),

有什么想法吗?

谢谢

im want to know if there is any way to make a SlugField unique for Any field different to pub date?

for example i would like a slug unique (city field) for a field called country

any idea?

thanks

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

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

发布评论

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

评论(1

还不是爱你 2024-09-15 02:25:40

向模型类添加 unique_together 元选项:

class MyModel(models.Model):
    city = models.SlugField()
    country = models.SlugField()
    class Meta:
        unique_together(('city', 'country'),)

有关详细信息,请参阅 unique_together

Add a unique_together Meta option to your model class:

class MyModel(models.Model):
    city = models.SlugField()
    country = models.SlugField()
    class Meta:
        unique_together(('city', 'country'),)

For more information, see the documentation on unique_together.

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