Slug 对于与酒吧日期不同的另一个领域来说是独特的?
我想知道是否有任何方法可以使 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
向模型类添加
unique_together
元选项:有关详细信息,请参阅
unique_together
。Add a
unique_together
Meta option to your model class:For more information, see the documentation on
unique_together
.