puppeteer/website/versioned_docs/version-22.8.1/api/puppeteer.httprequest.haspostdata.md
release-please[bot] 042d61030c
chore: release main (#12415)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
2024-05-13 08:49:32 +00:00

20 lines
520 B
Markdown

---
sidebar_label: HTTPRequest.hasPostData
---
# HTTPRequest.hasPostData() method
True when the request has POST data. Note that [HTTPRequest.postData()](./puppeteer.httprequest.postdata.md) might still be undefined when this flag is true when the data is too long or not readily available in the decoded form. In that case, use [HTTPRequest.fetchPostData()](./puppeteer.httprequest.fetchpostdata.md).
#### Signature:
```typescript
class HTTPRequest {
abstract hasPostData(): boolean;
}
```
**Returns:**
boolean