我在我的应用程序中使用地图 api。对于选择标记,按钮名为“ Add marker
”和“Refresh map"
刷新地图。我面对这里。
保存数据后,保存按钮将重定向到下一页。在我的情况下,两个“添加标记”"Refresh map"
都在执行保存按钮工作,如果我按下"Add marker"
而不是显示标记,页面将重定向到下一页。这正在发生使用</form>
.see my template here 后,
<form method="POST" action="/member/where/" >
{% csrf_token %}
<td colspan="2" class="incident-type" style="padding-left:25px">
{% for location in locationList%}
{% if location.parent_location_id == None %}
<h1>{{location.title}}</h1>
{% endif %}
{% endfor %}
<p>
<span class="map_buttons" >{% include "buttons/refreshmap.html" %}</span> <span class="map_buttons" style="margin-left:20px;">{% include "buttons/addmarker.html" %} </span>
</p>
<p id=ir-nextbtn>{% include "buttons/next.html" %}</a></form></p>
刷新标记.html
<button type="submit" title="Refresh map" class="map_buttons button_style">Refresh map</button>
addmarker.html
<button type="submit" title="Add marker" class="map_buttons button_style">Add marker</button>
需要澄清这个问题。