There is a GET request, but when you load the page in the URL can not see the parameters. How is this going? What is it and where to read in detail?


Added sample GET request code:

<button type="button" ng-click="window.open("{% url 'sklad' %}", '_blank')"> Склад </button> 

The warehouse is registered in the URLs:

url(r'^azmiestsklad/sklad/$', mySklad.as_view() name='sklad')

As I understand it, a GET request occurs, but the URL of the page additionally contains no parameter names.

  • and can some code or something? maybe there POST request, or all the same GET? - Oleksandr
  • Or maybe there were no parameters? - vp_arth
  • @ Oleksandr added sample code - EmptyMan
  • @vp_arth I'm new to this, but I know that the parameters are somehow passed and this happens with a GET request - EmptyMan
  • Open the F12 console, the Network tab, and study your request. - vp_arth

0