Django and query string parameters

后端 未结 3 1073
终归单人心
终归单人心 2020-12-08 04:15

Assuming I have a \'get_item\' view, how do I write the URL pattern for the following php style of URL?

http://example.com/get_item/?id=2&type=foo&co         


        
3条回答
  •  不知归路
    2020-12-08 04:38

    You just need to change your url pattern to:

    (r'^get_item/$', get_item)
    

    And your view code will work. In Django the url pattern matching is used for the actual path not the querystring.

提交回复
热议问题