axios - puppeteerApp
Kind: global class 发起 HTTP 请求,接口与 axios 保持一致。但不是 axios 的实例。
axios.get(url, config) ⇒ Promise
发起 GET 请求
Kind: static method of axios
Returns: Promise
- - 返回包含请求结果的 Promise 对象
Param | Type | Description |
---|---|---|
url | string | 请求的 URL |
config | Object | 请求配置选项 (可选) |
axios.post(url, data, config) ⇒ Promise
发起 POST 请求
Kind: static method of axios
Returns: Promise
- - 返回包含请求结果的 Promise 对象
Param | Type | Description |
---|---|---|
url | string | 请求的 URL |
data | Object | 需要发送的数据 |
config | Object | 请求配置选项 (可选) |
axios.put(url, data, config) ⇒ Promise
发起 PUT 请求
Kind: static method of axios
Returns: Promise
- - 返回包含请求结果的 Promise 对象
Param | Type | Description |
---|---|---|
url | string | 请求的 URL |
data | Object | 需要发送的数据 |
config | Object | 请求配置选项 (可选) |
axios.delete(url, config) ⇒ Promise
发起 DELETE 请求
Kind: static method of axios
Returns: Promise
- - 返回包含请求结果的 Promise 对象
Param | Type | Description |
---|---|---|
url | string | 请求的 URL |
config | Object | 请求配置选项 (可选) |
axios.patch(url, data, config) ⇒ Promise
发起 PATCH 请求
Kind: static method of axios
Returns: Promise
- - 返回包含请求结果的 Promise 对象
Param | Type | Description |
---|---|---|
url | string | 请求的 URL |
data | Object | 需要发送的数据 |
config | Object | 请求配置选项 (可选) |
PS Z:\workspace\todo-user-vue\src-capacitor\android\app\src\main\assets\core>