mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
20 lines
520 B
Markdown
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
|