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