HTTPRequest.fetchPostData() 方法
¥HTTPRequest.fetchPostData() method
从浏览器获取请求的 POST 数据。
¥Fetches the POST data for the request from the browser.
签名
¥Signature
class HTTPRequest {
abstract fetchPostData(): Promise<string | undefined>;
}
Returns:
Promise<string | undefined>