W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
Since: 1.0.0
id:number
Defined in: http.ts:303
delete<>(: , :RequestOptions
):Promise
<Response
T
url
string
options?
<T
>>
發(fā)出 DELETE 請(qǐng)求。
例
import { getClient } from '@tauri-apps/api/http';
const client = await getClient();
const response = await client.delete('http://localhost:3003/users/1');
類型參數(shù)
參數(shù)
名字 | 類型 |
---|---|
url | string |
options? | RequestOptions |
drop():Promise
<void
>
刪除客戶端實(shí)例。
例
import { getClient } from '@tauri-apps/api/http';
const client = await getClient();
await client.drop();
Returns: Promise
<void
>
get<>(: , :RequestOptions
):Promise
<Response
T
url
string
options?
<T
>>
發(fā)出 GET 請(qǐng)求。
例
import { getClient, ResponseType } from '@tauri-apps/api/http';
const client = await getClient();
const response = await client.get('http://localhost:3003/users', {
timeout: 30,
// the expected response type
responseType: ResponseType.JSON
});
類型參數(shù)
參數(shù)
名字 | 類型 |
---|---|
url | string |
options? | RequestOptions |
patch<>(: , :RequestOptions
):Promise
<Response
T
url
string
options?
<T
>>
發(fā)出 PATCH 請(qǐng)求。
例
import { getClient, Body } from '@tauri-apps/api/http';
const client = await getClient();
const response = await client.patch('http://localhost:3003/users/1', {
body: Body.json({ email: 'contact@tauri.app' })
});
類型參數(shù)
參數(shù)
名字 | 類型 |
---|---|
url | string |
options? | RequestOptions |
post<>(: , :Body
, :RequestOptions
):Promise
<Response
T
url
string
body?
options?
<T
>>
發(fā)出 POST 請(qǐng)求。
例
import { getClient, Body, ResponseType } from '@tauri-apps/api/http';
const client = await getClient();
const response = await client.post('http://localhost:3003/users', {
body: Body.json({
name: 'tauri',
password: 'awesome'
}),
// in this case the server returns a simple string
responseType: ResponseType.Text,
});
類型參數(shù)
參數(shù)
名字 | 類型 |
---|---|
url | string |
body? | Body |
options? | RequestOptions |
put<>(: , :Body
, :RequestOptions
):Promise
<Response
T
url
string
body?
options?
<T
>>
發(fā)出 PUT 請(qǐng)求。
例
import { getClient, Body } from '@tauri-apps/api/http';
const client = await getClient();
const response = await client.put('http://localhost:3003/users/1', {
body: Body.form({
file: {
file: '/home/tauri/avatar.png',
mime: 'image/png',
fileName: 'avatar.png'
}
})
});
類型參數(shù)
參數(shù)
名字 | 類型 |
---|---|
url | string |
body? | Body |
options? | RequestOptions |
request<>(:HttpOptions
):Promise
<Response
T
options
<T
>>
發(fā)出 HTTP 請(qǐng)求。
例
import { getClient } from '@tauri-apps/api/http';
const client = await getClient();
const response = await client.request({
method: 'GET',
url: 'http://localhost:3003/users',
});
類型參數(shù)
參數(shù)
名字 | 類型 |
---|---|
options | HttpOptions |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: