篩選問題

来源:

劉信佑

2017-01-21

一開始的城市篩選可以運作。之後做了機構篩選之後,一但按了機構再去按下其他城市,機構的部分會跳回去"全部",感覺ct的數值沒有被保留下來。

                <li>
					<h2>機構類別</h2>
					<div class="cont">
                        <a href="?ct="><span class="{% ifequal category '' %}active2{% endifequal %}">全部</span></a>

                            <a href="?ct=pxjg"><span class="{% ifequal category 'pxjg' %}active2{% endifequal %}">培訓機構</span></a>

                            <a href="?ct=gx"><span class="{% ifequal category 'gx' %}active2{% endifequal %}">高校</span></a>

                            <a href="?ct=gr"><span class="{% ifequal category 'gr' %}active2{% endifequal %}">個人</span></a>

					</div>
				</li>
				<li>
					<h2>所在地區</h2>
					<div class="more">更多</div>
					<div class="cont">
                        <a href="?city="><span class="{% ifequal city_id '' %}active2{% endifequal %}">全部</span></a>
                            
                            {% for city in all_citys %}
                                <a href="?city={{ city.id }}"><span class="{% ifequal city_id city.id|stringformat:'i' %}active2{% endifequal %}">{{ city.name }}</span></a>
                            {% endfor %}
					</div>
				</li>


写回答

1回答

慕侠2286034

2018-12-11

<a href="?city={{ city.id }}"><span class="{% ifequal city_id city.id|stringformat:'i' %}active2{% endifequal %}">{{ city.name }}</span></a>

你应该是还没有看完视频,这里的url:  href="?city={{ city.id }}" 要改写成  href="?city={{ city.id }}&ct={{ ct.id }}"

0
0

Python3.6+django+xadmin,打造在线教育平台

【毕设】Python 2.7到3.6 完美适配,Django升级2.0

3677 学习 · 4038 问题

查看课程