ValueError when getting objects by id

后端 未结 4 1600
无人及你
无人及你 2021-01-23 10:19

I\'m trying to get data by id in my django app. The problem is that I don\'t know the kind of id the user will click on. I input the below codes in views.

Views

4条回答
  •  礼貌的吻别
    2021-01-23 10:57

    The regex in your urlconf needs a little tweak:

    url(r'^cribme/(?P\d+)/$', 'meebapp.views.cribdetail', name='cribdetail'),
    

    The value of the meekme_id parameter wasn't being captured, since the \d+ was outside the parentheses.

提交回复
热议问题