我对 Django 很陌生,正在尝试构建我的第一个好应用程序。我决定尝试重建一个低复杂度的网站,并选择:http ://trailertrack.me/
我想知道你能否告诉我要采取哪些步骤。
现在,我的 views.py 文件看起来像这样(我现在只尝试显示一个特定的视频):
from django.http import HttpResponse
from django.shortcuts import render_to_response
import gdata.youtube
import gdata.youtube.service
yt_service = gdata.youtube.service.YouTubeService()
yt_service.ssl = True
def index(request):
message = "Welcome, and enjoy the show!"
context = {
'message': message,
}
return render_to_response('index.html', context)
def video(request):
t = loader.get_template('index.html')
specificentry = yt_service.GetYouTubeVideoEntry(video_id='1g4PLj0PlOM')
return HttpResponse(t.render(specificentry))
谢谢你的建议!