A :class:`FormsDict` with the combined values of :attr:`query` and :attr:`forms`. File uploads are stored in :attr:`files`.
(self)
| 1094 | |
| 1095 | @DictProperty('environ', 'bottle.request.params', read_only=True) |
| 1096 | def params(self): |
| 1097 | """ A :class:`FormsDict` with the combined values of :attr:`query` and |
| 1098 | :attr:`forms`. File uploads are stored in :attr:`files`. """ |
| 1099 | params = FormsDict() |
| 1100 | for key, value in self.query.allitems(): |
| 1101 | params[key] = value |
| 1102 | for key, value in self.forms.allitems(): |
| 1103 | params[key] = value |
| 1104 | return params |
| 1105 | |
| 1106 | @DictProperty('environ', 'bottle.request.files', read_only=True) |
| 1107 | def files(self): |