Django 使用一个应用程序的模型到另一应用程序的模型中
Salam 和嗨,
我正在使用 django 并在两个应用程序中分解项目的两个部分。然而,就数据库而言,一个表的引用字段作为其他表的外键。那么如何使用一个应用程序的模型主键作为另一个应用程序模型的外键呢?如果不可能,那么我应该只制作所有此类应用程序的单个应用程序。我实际上认为应用程序是项目的不同模块/组件,也许我将来会添加一些应用程序。
谢谢
Salam and hi,
I am using django and breaking two parts of project in two apps. However there is a reference field of one table as foreign key of other in terms of db. So how can I use one app's model primary key as foreign key of another app's model? And if is not possible then should I just make single app of all such apps. I am actually thinking apps as different modules/components of project, may be I will be adding some apps in future.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从其他应用程序导入模型,或通过字符串中的名称引用它。
Either import the model from the other app, or refer to it by name in a string.