我在 urls.py 中有这个
urlpatterns = [
path("product/<str:title>/<slug:pname>/<uuid:puid>",views.viewProduct),
]
但是当我尝试点击网址时。我得到了这个错误。
The current path, product/amazon/home-secure-snake-shield-natural-snake-r/B0882NKXW7, didn't match any of these.
在这里我只想要 puid 但为了匹配我添加的 URL 模式 str:title 和 str:pname
我不想要标题和 pname。但我的 URL 模式是这样的——
product/store_name/product_name_slug/product_id