我有一个简单的索引视图,但我希望能够在渲染之前从模板中操作 HTML,所以我需要从模板对象中提取 HTML 作为字符串,然后将它放回去完成后在对象中。我怎样才能做到这一点?
def index(request):
latest_course_list = Course.objects.order_by('-start_date')
template = loader.get_template('index.html')
ctx = {
'latest_course_list': latest_course_list,
}
return render_to_response('index.html', ctx, context_instance=RequestContext(request))