Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在学习 Django,我需要知道是否可以将数据库中已经存在的表链接到模型(因为,我听说表是由 Django 为我们在 django app 中创建的任何模型创建的)。
如果是这样,怎么办?
inspectdb现在工作正常。(Django 1.7+) 只需运行 manage.py inspectdb 将为数据库中的所有表创建类并显示在控制台上。
inspectdb
$ python manage.py inspectdb
使用标准 Unix 输出重定向将其保存为文件:
$ python manage.py inspectdb > models.py
从这里进一步阅读。