The :attr:`query_string` parsed into a :class:`FormsDict`. These values are sometimes called "URL arguments" or "GET parameters", but not to be confused with "URL wildcards" as they are provided by the :class:`Router`.
(self)
| 1616 | |
| 1617 | @DictProperty('environ', 'bottle.request.query', read_only=True) |
| 1618 | def query(self): |
| 1619 | """ The :attr:`query_string` parsed into a :class:`FormsDict`. These |
| 1620 | values are sometimes called "URL arguments" or "GET parameters", but |
| 1621 | not to be confused with "URL wildcards" as they are provided by the |
| 1622 | :class:`Router`. """ |
| 1623 | get = self.environ['bottle.get'] = FormsDict() |
| 1624 | pairs = _parse_qsl(self.environ.get('QUERY_STRING', '')) |
| 1625 | for key, value in pairs: |
| 1626 | get[key] = value |
| 1627 | return get |
| 1628 | |
| 1629 | @DictProperty('environ', 'bottle.request.forms', read_only=True) |
| 1630 | def forms(self): |
nothing calls this directly
no test coverage detected