Returns a list of the query arguments with the given name. If the argument is not present, returns an empty list. .. versionadded:: 3.2
(self, name: str, strip: bool = True)
| 519 | return self._get_argument(name, default, self.request.query_arguments, strip) |
| 520 | |
| 521 | def get_query_arguments(self, name: str, strip: bool = True) -> List[str]: |
| 522 | """Returns a list of the query arguments with the given name. |
| 523 | |
| 524 | If the argument is not present, returns an empty list. |
| 525 | |
| 526 | .. versionadded:: 3.2 |
| 527 | """ |
| 528 | return self._get_arguments(name, self.request.query_arguments, strip) |
| 529 | |
| 530 | def _get_argument( |
| 531 | self, |