debug_toolbar 설치 설정

4947 단어
pip 설치
pip install django-debug-toolbar -i http://pypi.douban.com/simple

다음은 제가 프로젝트에 있는 대 debug 입니다.toolbar은 settings에 있습니다.py의 설정: 우선 설정DEBUG = True1.마지막 줄에 추가합니다. 마지막 줄만 있으면 상기 플러그인에 debug를 할 수 있습니다
MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'debug_toolbar.middleware.DebugToolbarMiddleware', #debug_toolbar
)
  • 구성 debugtoolbar의 템플릿 경로
  • TEMPLATE_DIRS = (
        # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
        # Always use forward slashes, even on Windows.
        # Don't forget to use absolute paths, not relative paths.
        # os.path.join(REL_SITE_ROOT, 'templates'),
        # 'path/to/debug_toolbar/templates' ,
        '/home/spang/.virtualenvs/env/lib/python2.7/site-packages/debug_toolbar/templates/',
    
    )
  • 가져오기 모듈 이름
  • INSTALLED_APPS = (
        'django.contrib.auth',
        'django.contrib.contenttypes',
        'django.contrib.sessions',
        'django.contrib.sites',
        'django.contrib.messages',
        # Uncomment the next line to enable the admin:
        #'django.contrib.admin',
        # Uncomment the next line to enable admin documentation:
        # 'django.contrib.admindocs',
    
        'debug_toolbar', #debug_toolbar
    )
  • 프로젝트 실행 IP
  • INTERNAL_IPS = ('192.168.1.110',)
  • debug를 설치할 대상
  • DEBUG_TOOLBAR_PANELS = [
        'debug_toolbar.panels.versions.VersionsPanel',
        'debug_toolbar.panels.timer.TimerPanel',
        'debug_toolbar.panels.settings.SettingsPanel',
        'debug_toolbar.panels.headers.HeadersPanel',
        'debug_toolbar.panels.request.RequestPanel',
        'debug_toolbar.panels.sql.SQLPanel',
        'debug_toolbar.panels.staticfiles.StaticFilesPanel',
        'debug_toolbar.panels.templates.TemplatesPanel',
        'debug_toolbar.panels.cache.CachePanel',
        'debug_toolbar.panels.signals.SignalsPanel',
        'debug_toolbar.panels.logging.LoggingPanel',
        'debug_toolbar.panels.redirects.RedirectsPanel',
    ]
  • debug 표시 모드
  • DEBUG_TOOLBAR_CONFIG = {
        # Toolbar options
        # 'INTERCEPT_REDIRECTS': False,
        'JQUERY_URL': '//libs.baidu.com/jquery/1.9.1/jquery.min.js',
    
    }
  • 아래 jQuery 위치 설정(기본값ajax.google의 jQuery 파일, 국내 사용 불가)
  • DEBUG_TOOLBAR_CONFIG = {
    # Toolbar options
    'JQUERY_URL': '//libs.baidu.com/jquery/1.9.1/jquery.min.js',
    }

    좋은 웹페이지 즐겨찾기