Returns a list of the body arguments with the given name. If the argument is not present, returns an empty list. .. versionadded:: 3.2
(self, name: str, strip: bool = True)
| 491 | return self._get_argument(name, default, self.request.body_arguments, strip) |
| 492 | |
| 493 | def get_body_arguments(self, name: str, strip: bool = True) -> List[str]: |
| 494 | """Returns a list of the body arguments with the given name. |
| 495 | |
| 496 | If the argument is not present, returns an empty list. |
| 497 | |
| 498 | .. versionadded:: 3.2 |
| 499 | """ |
| 500 | return self._get_arguments(name, self.request.body_arguments, strip) |
| 501 | |
| 502 | def get_query_argument( |
| 503 | self, |