我是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))
感谢您的建议!
答案 0 :(得分:0)
好的,这是我如何做到这一点的大致轮廓。订单无关紧要;显然它们之间有一些依赖关系,但是按照你想要处理它们的顺序来做它们。
此外,如果您是新手,我强烈建议您使用git,或者,如果您已经熟悉它,mercurial进行版本控制,{{3}跟踪依赖关系。