我有以下html按钮可以正常保存:
<form action="" method="post">
<input type="hidden" value="{{ people }}" name="people">
<input type="hidden" value="{{ number }}" name="number">
<p>{% trans 'Are you sure you want to save people' %} {{ people }} {% trans 'where number is' %} {{ number }}?
</p>
{% buttons %}
<button class="btn btn-default hover-linea" id="cancel" type="button">
{% bootstrap_icon "remove" %} {% trans 'Cancel' %}
</button>
<button type="submit" class="btn btn-default hover-linea">
{% bootstrap_icon "log-out" %} {% trans 'Save' %}
</button>
{% endbuttons %}
保存时,我需要将前一页重新加载到表单中。我想按Save并执行与现在相同的操作,但还要对相对链接为(../people.html)的页面进行location.reload()。
我在等待答案,非常感谢。
答案 0 :(得分:0)
您的服务器端表单处理程序(已在action
中指定了URL)属性应通过HTTP重定向(状态302
和Location:
标头)响应给您要浏览器加载的URL。