gpt4 book ai didi

python - 重定向()和NoReverseMatch

转载 作者:太空宇宙 更新时间:2023-11-03 19:25:44 25 4
gpt4 key购买 nike

我正在尝试编写正确的重定向到其他 View ,但现在我不知道

这是我最后一次尝试:

txt2png/urls.py

urlpatterns = patterns('txt2png.views',
# ...
url(r'^list/(?P<what>\w)/', 'list', name='list-notes'),
url(r'^search/', 'search', name='search-notes'),
)

txt2png/views.py

def list(request, what):
# ...
def search(request):
#...
return redirect(list, 'search')

最佳答案

你试过.../list/anything/吗? ?这是 404,因为你的 url 配置。 (?P<what>\w)只表示一个字符,所以 .../list/a/会起作用的。

替换您的网址配置中的该行:

url(r'^list/(?P<what>\w+)/', list, name='list-notes'),

(添加到正则表达式中的 + 号)

关于python - 重定向()和NoReverseMatch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8202279/

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