跳过内容

开始

GitHub

您可以使用我们的 AI 助手设置来安装插件。使用以下命令将 Capgo 技能添加到您的 AI 工具中:

终端窗口
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins

然后使用以下提示:

Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-downloader` plugin in my project.

如果您prefer手动设置,安装插件并运行以下命令并遵循以下平台特定的说明:

终端窗口
bun add @capgo/capacitor-downloader
bunx cap sync

导入

导入
import { CapacitorDownloader } from '@capgo/capacitor-downloader';

API概述

API概述

download

下载

复制到剪贴板

import { CapacitorDownloader } from '@capgo/capacitor-downloader';
const task = await Downloader.download({
id: 'my-download',
url: 'https://example.com/file.pdf',
destination: 'downloads/file.pdf'
});

暂停正在下载的任务。 下载可以在同一位置从暂停位置恢复。

import { CapacitorDownloader } from '@capgo/capacitor-downloader';
await CapacitorDownloader.pause({} as { id: string });

恢复暂停的下载。 从暂停的地方继续。

import { CapacitorDownloader } from '@capgo/capacitor-downloader';
await CapacitorDownloader.resume({} as { id: string });

停止并取消一个下载,永久性地。 下载的数据会被删除。

import { CapacitorDownloader } from '@capgo/capacitor-downloader';
await CapacitorDownloader.stop({} as { id: string });

检查下载的当前状态。

import { CapacitorDownloader } from '@capgo/capacitor-downloader';
await CapacitorDownloader.checkStatus({} as { id: string });

获取关于下载的文件的信息。

import { CapacitorDownloader } from '@capgo/capacitor-downloader';
await CapacitorDownloader.getFileInfo({} as { path: string });

类型参考

类型参考

DownloadOptions

下载选项

下载器启动配置选项

export interface DownloadOptions {
/** Unique identifier for this download task */
id: string;
/** URL of the file to download */
url: string;
/** Local file path where the download will be saved */
destination: string;
/** Optional HTTP headers to include in the request */
headers?: { [key: string]: string };
/** Network type requirement for download */
network?: 'cellular' | 'wifi-only';
/** Download priority level */
priority?: 'high' | 'normal' | 'low';
}

DownloadTask

下载任务

下载任务的当前状态和进度

export interface DownloadTask {
/** Unique identifier for the download task */
id: string;
/** Download progress from 0 to 100 */
progress: number;
/** Current state of the download */
state: 'PENDING' | 'RUNNING' | 'PAUSED' | 'DONE' | 'ERROR';
}

重新同步公共__CAPGO_KEEP_0__时,源代码发生了变化。请重新同步。 src/definitions.ts. Re-run the sync when the public API changes upstream.

如果您正在使用 Getting Started 以计划仪表板和API操作,连接它 使用 @capgo/capacitor-downloader 为使用 @capgo/capacitor-downloader 的本机能力 API 概述 为在 API 概述 中的实现细节 介绍 为在介绍中实现的细节 API 密钥 为在 API 密钥 中的实现细节 设备 查看设备的实现细节。