共用方式為


OperationRequestOptions interface

建立和傳送此作業之 HTTP 要求時所使用的選項。

屬性

allowInsecureConnection

如果要求是透過 HTTP 而非 HTTPS 傳送,則設定為 true

headers

使用者定義自訂要求標頭,將在傳送要求之前套用。

onDownloadProgress

下載進度時引發的回呼。

onUploadProgress

上傳進度時引發的回呼。

skipUrlEncoding

如果您想要略過路徑參數的編碼方式,請將 設定為 true

timeout

要求在自動終止之前可能需要的毫秒數。

屬性詳細資料

allowInsecureConnection

如果要求是透過 HTTP 而非 HTTPS 傳送,則設定為 true

allowInsecureConnection?: boolean

屬性值

boolean

headers

使用者定義自訂要求標頭,將在傳送要求之前套用。

headers?: RawHttpHeadersInput

屬性值

onDownloadProgress

下載進度時引發的回呼。

onDownloadProgress?: (progress: TransferProgressEvent) => void

屬性值

(progress: TransferProgressEvent) => void

onUploadProgress

上傳進度時引發的回呼。

onUploadProgress?: (progress: TransferProgressEvent) => void

屬性值

(progress: TransferProgressEvent) => void

skipUrlEncoding

如果您想要略過路徑參數的編碼方式,請將 設定為 true

skipUrlEncoding?: boolean

屬性值

boolean

timeout

要求在自動終止之前可能需要的毫秒數。

timeout?: number

屬性值

number