我想将两个数组发送到 django 中的模板,例如 first=['a','b','c'] 和 second=['1','2','3']。
return render_to_response('temp.html',{'first':first, 'second':second}, context_instance=RequestContext(request))
现在在模板中,我想要一个在两个数组中移动的对象。就像是:
{% for var1 in first and var2 in second %}
...
{% endfor %}
你能告诉我是什么方法吗?