I am sending a GET request from jquery as:
http://127.0.0.1:8000/viewspecs/itemdetails?param1="+variable1+"¶m2="+ variable2
The urls.py file in django for this section looks something like:
url(r'^viewspecs/itemdetails?param1=(?P<specs_search_item>[\w\+%_ ./-]+)¶m2=(?P<item_price>[0-9])$', views.specsView),
When I access the address ,I get a page not(404) error. why ?
viewspecs/itemdetailsand access usingviewspecs/itemdetails?param=search_item