tensor
tensor

Reputation: 3340

Django request GET return None on string

I have this url :

   /page_b/a015541/?pagei=a011&account_id=95651&application_id=5563&startdate=20170101&enddate=20170101

When parsing with :

   page_id=         request.GET.get('pagename')
   account_id=         request.GET.get('account_id')
   application_id=  request.GET.get('application_id')
   uurid=  request.GET.get('uurid')

I have for string values : page_id = None

Numerical have correct values

How to fix this ?

Upvotes: 1

Views: 3940

Answers (2)

sreekanth kuriyala
sreekanth kuriyala

Reputation: 1353

In URL you are not sending 'pagename'. I think you are trying to get 'pagei'.

That case use like below.

request.GET.get('pagei')

Upvotes: 1

Usman Maqbool
Usman Maqbool

Reputation: 3371

according to URL

/page_b/a015541/?pagei=a011&account_id=95651&application_id=5563&startdate=20170101&enddate=20170101

You are sending pagei.

just replace

page_id=         request.GET.get('pagename')

with

page_id=         request.GET.get('pagei')

you will get page_id

Upvotes: 3

Related Questions