2016-12-07 3 views
1

問題はジャンゴでロードしません。それはこのように見えます。テンプレートは

app/templates 
└── app 
    └── profile.html 

設定ファイルは次のようになります。

""" 
Django settings for demonstration project. 

Generated by 'django-admin startproject' using Django 1.10.3. 

For more information on this file, see 
https://docs.djangoproject.com/en/1.10/topics/settings/ 

For the full list of settings and their values, see 
https://docs.djangoproject.com/en/1.10/ref/settings/ 
""" 

import os 

# Build paths inside the project like this: os.path.join(BASE_DIR, ...) 
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 

TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')] 

# Quick-start development settings - unsuitable for production 
# See https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/ 

# SECURITY WARNING: keep the secret key used in production secret! 
SECRET_KEY = 'SOME_KEY_NON_PROD_TESTING_LOCALLY' 

# SECURITY WARNING: don't run with debug turned on in production! 
DEBUG = True 

ALLOWED_HOSTS = [] 


# Application definition 

INSTALLED_APPS = [ 
    'django.contrib.admin', 
    'django.contrib.auth', 
    'django.contrib.contenttypes', 
    'django.contrib.sessions', 
    'django.contrib.messages', 
    'django.contrib.staticfiles', 
    'app', 
] 

MIDDLEWARE = [ 
    'django.middleware.security.SecurityMiddleware', 
    'django.contrib.sessions.middleware.SessionMiddleware', 
    'django.middleware.common.CommonMiddleware', 
    'django.middleware.csrf.CsrfViewMiddleware', 
    'django.contrib.auth.middleware.AuthenticationMiddleware', 
    'django.contrib.messages.middleware.MessageMiddleware', 
    'django.middleware.clickjacking.XFrameOptionsMiddleware', 
] 

ROOT_URLCONF = 'demonstration.urls' 

TEMPLATES = [ 
    { 
     'BACKEND': 'django.template.backends.django.DjangoTemplates', 
     'DIRS': [os.path.join(BASE_DIR, 'templates')], 
     'APP_DIRS': True, 
     'OPTIONS': { 
      'context_processors': [ 
       'django.template.context_processors.debug', 
       'django.template.context_processors.request', 
       'django.contrib.auth.context_processors.auth', 
       'django.contrib.messages.context_processors.messages', 
      ], 
     }, 
    }, 
] 

WSGI_APPLICATION = 'demonstration.wsgi.application' 


# Database 
# https://docs.djangoproject.com/en/1.10/ref/settings/#databases 

DATABASES = { 
    'default': { 
     'ENGINE': 'django.db.backends.sqlite3', 
     'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), 
    } 
} 


# Password validation 
# https://docs.djangoproject.com/en/1.10/ref/settings/#auth-password-validators 

AUTH_PASSWORD_VALIDATORS = [ 
    { 
     'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', 
    }, 
    { 
     'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', 
    }, 
    { 
     'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', 
    }, 
    { 
     'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', 
    }, 
] 


# Internationalization 
# https://docs.djangoproject.com/en/1.10/topics/i18n/ 

LANGUAGE_CODE = 'en-us' 

TIME_ZONE = 'UTC' 

USE_I18N = True 

USE_L10N = True 

USE_TZ = True 


# Static files (CSS, JavaScript, Images) 
# https://docs.djangoproject.com/en/1.10/howto/static-files/ 

STATIC_URL = '/static/' 

チュートリアルでは、テンプレートのディレクトリを定義言及したので、私は定義された:

TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')] 

をしかし、私も見ましたので、動作しませんでしたことDIRsオプションをテンプレートスタンザに追加して、上に追加したTEMPLATE_DIRSと同じ値に設定します。

ここでも変更はありません。私は明らかにテンプレートを指している必要がある設定について何かが不足していますが、それは現時点で何であるかについて悩まされています。

ビュー:

from django.shortcuts import render, HttpResponse 
import requests 
import json 

# Create your views here. 

def index(request): 
    return HttpResponse('Hello World!') 

def second_view(request): 
    return HttpResponse('This is the second view!') 

def profile(request): 
    jsonList = [] 
    req = requests.get('https://api.github.com/users/<username_here>') 
    jsonList.append(json.loads(req.content.decode())) 
    parsedData = [] 
    userData = {} 
    for data in jsonList: 
     userData['name'] = data['name'] 
     userData['email'] = data['email'] 
     userData['public_gists'] = data['public_gists'] 
     userData['public_repos'] = data['public_repos'] 
     userData['avatar_url'] = data['avatar_url'] 
     userData['followers'] = data['followers'] 
     userData['following'] = data['following'] 
    parsedData.append(userData) 
    return HttpResponse(parsedData) 

ローカルホストのページのソース:8000 /アプリ/プロフィール

{'followers': 1, 'public_repos': 5, 'avatar_url': 'https://avatars.githubusercontent.com/u/XXXXX', 'email': None, 'following': 4, 'name': None, 'public_gists': 1} 
+1

テンプレートはどのように表示されますか? – ettanany

+0

私はあなた自身がビューそのものを意味していると思います - それは痛みのテキストです(実際にはjsonの内容です)。ビューにはロード時に関連付けられたCSSはありません。 - 上記の実際のテンプレートを追加しました。 – mutantChickenHer0

+1

動作していないものは表示されていません。あなたの見解はどこですか?あなたのテンプレートは何ですか?あなたは何のURLを使用していますか?あなたはどんな問題を抱えていますか? –

答えて

2

:リターンは(要求、「アプリ/ profile.html」、{parsedDataのデータを '}):レンダリング templates/app/profile.html、あなたのビューが何かする必要があります以下のような:

def some_view(request) 
    # some code 
    return render(request, 'app/profile.html') 

あなたのプロフィールビューは以下のようになります。

def profile(request) 
    # your code 
    return render(request, 'app/profile.html', {'data': userData}) 

今、あなたのテンプレートprofile.htmlに、あなたがオブジェクトにアクセスすることができますdata

0

例えば表示するレンダリング返す必要がありますあなたのtemplatesフォルダは、プロジェクトのルートフォルダにある、あなたは、このようなprofile.htmlをお持ちの場合は