我正在使用Django formttools來(lái)創(chuàng)建一個(gè)多步驟向?qū)?。在其中一個(gè)表單中,我有一個(gè)問(wèn)題選項(xiàng),用戶需要根據(jù)需要添加盡可能多的問(wèn)題。我已經(jīng)通過(guò)Django Dynamic Formset實(shí)現(xiàn)了動(dòng)態(tài)表單集,但是盡管我的模板中有{%csrf_token%},但我仍然遇到CSRF問(wèn)題。這是我的模板: {% block content %} <p>Step {{ wizard.steps.step1 }} of {{ wizard.steps.count }}</p> <form action="" method="post" enctype="multipart/form-data" id="job-question">{% csrf_token %} <table> {{ wizard.management_form }}{% if wizard.form.forms %} {{ wizard.form.management_form }} {% for form in wizard.form.forms %} {{ form }} {% endfor %}{% else %} {{ wizard.form }}{% endif %}</table>{% if wizard.steps.prev %}<button name="wizard_goto_step" type="submit" value="{{ wizard.steps.first }}">{% trans "first step" %}</button><button name="wizard_goto_step" type="submit" value="{{ wizard.steps.prev }}">{% trans "prev step" %}</button>{% endif %}<input type="submit" value="{% trans "submit" %}"/></form><script type="text/javascript" src="{% static 'js/jquery-min.3.4.1..js' %}"></script><script type="text/javascript" src="{% static 'js/jquery.formset.js' %}"></script><script type="text/javascript"> $(function() { $('#job-question').formset(); })</script>{% endblock %}
1 回答

牛魔王的故事
TA貢獻(xiàn)1830條經(jīng)驗(yàn) 獲得超3個(gè)贊
我設(shè)法通過(guò)將每個(gè)表單及其id傳遞給動(dòng)態(tài)表單集JS函數(shù)來(lái)處理這個(gè)問(wèn)題。通過(guò)這種方式,驗(yàn)證是完全完成的。
添加回答
舉報(bào)
0/150
提交
取消