我有一个查询集,我想用它的对象来填充模板。我以一种观点结束
return render_to_response('entry.json', {'entry_list':r}, mimetype="application/json; charset=utf-8")
但是,我希望能够使用这样的模板序列化为 json,而不必返回 HTTPResponse。在伪代码中,这可能是:
render('entry.json', {'entry_list':r}) #returns a string with the template entry.json
这可能吗?如果是这样,怎么做?