0

我有一个简单的索引视图,但我希望能够在渲染之前从模板中操作 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))
4

1 回答 1

2

我使用以下方法做了类似的事情:

render_to_string('template_name', context)
于 2013-05-30T07:40:38.833 回答