有没有办法将字段添加到 Django 的站点框架中?
我真的很喜欢站点框架的想法,该框架使应用程序可以跨多个网站运行。有没有办法将字段添加到数据库的 Site
对象上,或者我应该创建外键一对一关系?
I really like the idea of the sites framework for making an application functional across multiple web sites. Is there a way to add fields onto the Site
object for the database, or should I just create a foreign-key one-to-one relationship?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,使用具有唯一外键的模型。 Django 会将其作为反向关系添加到 Site。
Yes, use a model with a unique foreign key. Django will add it to Site as a reverse relationship.