puppeteer/docs/api/puppeteer.httprequest.haspostdata.md
2024-01-02 11:02:08 +01: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