wsgi.py文件中调用django项目的模型等类

1)加入相关路径

sys.path.append('/www/xxx/xxx')
sys.path.append('/env/xxx/lib/python3.8/site-packages')

2)覆写启动方法

def get_wsgi_application():
  django.setup(set_prefix=False)
  # 此处调用和使用项目中的内容
  return WSGIHandler()

application = get_wsgi_application()

你可能感兴趣的:(wsgi.py文件中调用django项目的模型等类)