A :class:`FormsDict` with the combined values of :attr:`query` and :attr:`forms`. File uploads are stored in :attr:`files`.
(self)
| 1641 | |
| 1642 | @DictProperty('environ', 'bottle.request.params', read_only=True) |
| 1643 | def params(self): |
| 1644 | """ A :class:`FormsDict` with the combined values of :attr:`query` and |
| 1645 | :attr:`forms`. File uploads are stored in :attr:`files`. """ |
| 1646 | params = FormsDict() |
| 1647 | for key, value in self.query.allitems(): |
| 1648 | params[key] = value |
| 1649 | for key, value in self.forms.allitems(): |
| 1650 | params[key] = value |
| 1651 | return params |
| 1652 | |
| 1653 | @DictProperty('environ', 'bottle.request.files', read_only=True) |
| 1654 | def files(self): |