Jquery ajax – how to loop ajax response data in Django template language?
i am new to Django,recently meet a problem :as we know , to loop a data sent by view in html is simple , like below: {% for key in data %} <p>{{ key }}</p> {% endfor %} but ,what…