当我点击链接时
<a href="?page={{request.GET.page}}&order_by=counter__service__name_service&sort={{ sort_type }}&from_date={{request.GET.from_date}}&from_date={{request.GET.to_date}}&type_water={{request.GET.type_water}}">
所有参数都保存为表单和其他参数,但是当我尝试在表单操作方法中保留这些参数时
<form class="row justify-content-around" id="searchform" action="{% url 'history_application' %}?page={{request.GET.page}}&order_by={{request.GET.order_by}}&sort={{request.GET.sort}}" method="get" accept-charset="utf-8">
它会删除它们(URL:history/?type_water=hot&from_date=&to_date=
)。
为什么参数不会保留在查询中?
https://stackoverflow.com/questions/50976481
复制相似问题