django에서py 파일을 디버깅하는 방법

2833 단어 django
py , django , , , google stackoverflow :
첫 번째 방법: settings 대상을 가져옵니다. (대상이 모듈이 아니라는 것을 주의하십시오)
  from django.conf import settings 
settings
.configure( 
        DATABASE_ENGINE
='postgresql_psycopg2', 
        DATABASE_NAME
='FOO', 
        DATABASE_USER
='username', 
        DATABASE_PASSWORD
='password', 
        DATABASE_HOST
='localhost', 
        DATABASE_PORT
='5432', 
        INSTALLED_APPS
=('foo',) 

)
직접 세팅하면.configure () 는 데이터베이스 설정을 잘못 찾을 수 있으므로 위의 방법에 따라 명확하게 표시할 수 있습니다.
 
더 좋은 방법은:import django.core.management 
from foo import settings 
django
.core.management.setup_environ(settings) 
django.core.management setup_environ , docstring :

    Configures the runtime environment. This can also be used by external    scripts wanting to set up a similar environment to manage.py.    Returns the project directory (assuming the passed settings module is    directly in the project directory).
    The "original_settings_path"parameter is optional, but recommended, since    trying to work out the original path from the module can be problematic.
         py         django      

좋은 웹페이지 즐겨찾기