gpt4 book ai didi

python - 我需要帮助将 urlpatterns url 转换为等效路径

转载 作者:行者123 更新时间:2023-12-01 07:37:09 26 4
gpt4 key购买 nike

我正在帮助一个 friend 完成一个项目,但在将 urlpatterns url 转换为其等效路径时遇到问题。有什么帮助吗?

我已经完成了第一部分。

path('store', views.product_list, name='product_list'),

但其余的似乎具有挑战性

urlpatterns = [
url(r'^store', views.product_list, name='product_list'),
url(r'^(?P<category_slug>[-\w]+)/$', views.product_list, name='product_list_by_category'),
url(r'^(?P<id>\d+)/(?P<slug>[-\w]+)/$', views.product_detail, name='product_detail'),
]

最佳答案

您可以按照documentation中所述使用路径转换器。 。在您的情况下,您将需要 intslug,所以像这样:

path('<slug:category_slug>/', views.product_list, name='product_list_by_category'),
path('<int:id>/<slug:slug>/', views.product_detail, name='product_detail'),

关于python - 我需要帮助将 urlpatterns url 转换为等效路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56937117/

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