Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我根据距离生成搜索结果页面,并且只显示小于某个距离的结果。我希望有一个不同距离值的选择框,当用户选择不同的距离时,结果会发生变化。
我希望将此标签中的半径值绑定到选择框:
{% if hospital.distance <= radius %} Display this result {% endif %}
那么有没有办法使用选择框来更改 Django 标签中的值?
不,这发生在客户端。你想要做的是使用javascript。一种方法是将其放入隐藏的 div 中,然后在您的条件为真时使用 javascript 显示它。