gpt4 book ai didi

python-3.x - 如何使用 python reverse() 函数将 id 列表作为查询参数传递?

转载 作者:行者123 更新时间:2023-12-05 05:01:56 30 4
gpt4 key购买 nike

我需要生成一个包含对象 ID 列表的 URL 作为查询参数。IE网址看起来像 admin/app/model/?id__in=1,2,3 .我用过reverse('admin:app_model_changelist', kwargs={id__in:<list_of_ids>})这似乎不起作用

最佳答案

reverse() 不会生成查询参数。您可以尝试将字符串格式设置为

path = reverse('admin:app_model_changelist')
<b>result = '%s?id__in=%s' % (path, ','.join(map(str,list_of_ids))) </b>

关于python-3.x - 如何使用 python reverse() 函数将 id 列表作为查询参数传递?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62423832/

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