[Solved] Django URL pattern (~~/?item_id=2)
You can pass parameters to a view either in the url: /category_check_view/2 Or via GET params: /category_check_view/?item_id=2 GET params are not processed by the URL handler, but rather passed directly to the GET param dict accessible in a view at request.GET. The Django (i.e. preferred) way to do handle URLs is the first one. So … Read more