gpt4 book ai didi

javascript - 点击 li 应该在其他 div 中打开一个 url 但有一些数据

转载 作者:行者123 更新时间:2023-11-28 06:08:49 26 4
gpt4 key购买 nike

我在我的元素中使用 django 为 friend 创建聊天(已分配 id)

问题是在 second_div li 元素时,加载在 for 循环中生成的 url(带有 id 和 friend.id)强>元素

类似于 android 中的ma​​ster-detail view 或 facebook 中的完整对话 View

请帮帮我

<div id="first_div" class="col m4 l4 s4">
<p>Chat with your friends</p>
<ul>
{% for friend in friends %}
<li><a href="/chat_box/{{ id }}/{{ friend.id }}">{{ friend.name }}</a></li>
{% endfor %}</ul>
</div>
<div id="second_div" class="col s8 m8 l8">
<!--the href link to be loa-->
</div>

最佳答案

因为您已经为 url 设置了 id 和 friend.id。在你的 urls.py -

url(r'^foo/(?P<id>[^/]+)/(?P<friend_id>[^/]+)/$', views.foo_view, name='foo_view'),

在你的 views.py 中 -

def foo_view(request, id, friend_id):
# do whatever you want with them

关于javascript - 点击 li 应该在其他 div 中打开一个 url 但有一些数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36294225/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com