如何在 Django 应用程序中调用 collectstatic 例程?
How can I call collectstatic routine inside a django app?
我的 Django 应用程序使用 css/html 主题,我可以从用户界面上传新主题,也就是说,普通用户无需请求 IT 人员即可上传新主题。我通常调用 os.run('python manage.py collectstatic') 但我想知道是否有可能以更优雅或 pythonic 的方式进行。
您可以使用 call_command(...)
--(doc) 作为,
from django.core import management
management.call_command("collectstatic")
我的 Django 应用程序使用 css/html 主题,我可以从用户界面上传新主题,也就是说,普通用户无需请求 IT 人员即可上传新主题。我通常调用 os.run('python manage.py collectstatic') 但我想知道是否有可能以更优雅或 pythonic 的方式进行。
您可以使用 call_command(...)
--(doc) 作为,
from django.core import management
management.call_command("collectstatic")