本文整理汇总了TypeScript中builder-util-runtime.configureRequestOptionsFromUrl函数的典型用法代码示例。如果您正苦于以下问题:TypeScript configureRequestOptionsFromUrl函数的具体用法?TypeScript configureRequestOptionsFromUrl怎么用?TypeScript configureRequestOptionsFromUrl使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了configureRequestOptionsFromUrl函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: createRequestOptions
createRequestOptions(method: "head" | "get" = "get", newUrl?: string | null): RequestOptions {
return {
...(newUrl == null ? this.baseRequestOptions : configureRequestOptionsFromUrl(newUrl, {})),
method,
headers: {
...this.options.requestHeaders,
Accept: "*/*",
} as any,
}
}
示例2: resolve
return await options.cancellationToken.createPromise<string>((resolve, reject, onCancel) => {
this.doDownload(configureRequestOptionsFromUrl(url, {
headers: options.headers || undefined,
}), destination, 0, options, (error: Error) => {
if (error == null) {
resolve(destination)
}
else {
reject(error)
}
}, onCancel)
})
示例3: constructor
// noinspection TypeScriptAbstractClassConstructorCanBeMadeProtected
constructor(protected readonly blockAwareFileInfo: BlockMapDataHolder, readonly httpExecutor: HttpExecutor<any>, readonly options: DifferentialDownloaderOptions) {
this.logger = options.logger
this.baseRequestOptions = configureRequestOptionsFromUrl(options.newUrl, {})
}
示例4: constructor
constructor(private readonly packageInfo: PackageFileInfo, private readonly httpExecutor: HttpExecutor<any>, private readonly options: DifferentialDownloaderOptions) {
this.logger = options.logger
this.baseRequestOptions = configureRequestOptionsFromUrl(packageInfo.file, {})
}