QueryDict.items()
Just like the standard dictionary items()
method, except this uses the same last-value logic as __getitem__()
. For example:
>>> q = QueryDict('a=1&a=2&a=3') >>> q.items() [('a', '3')]
QueryDict.items()
Just like the standard dictionary items()
method, except this uses the same last-value logic as __getitem__()
. For example:
>>> q = QueryDict('a=1&a=2&a=3') >>> q.items() [('a', '3')]
Please login to continue.