Passer à la navigation

Démarrage

Fenêtre de terminal
bun add @capgo/capacitor-downloader
bunx cap sync
import { CapacitorDownloader } from '@capgo/capacitor-downloader';

Démarrer une nouvelle tâche de téléchargement.

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

Mettre en pause un téléchargement actif. Le téléchargement peut être repris plus tard à la même position.

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

Reprendre un téléchargement mis en pause. Continuer depuis l'endroit où il était mis en pause.

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

Arrêtez et annulez une téléchargement de manière permanente. Les données téléchargées seront supprimées.

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

Vérifiez l'état actuel d'un téléchargement.

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

Obtenez des informations sur un fichier téléchargé.

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

Options de configuration pour démarrer un téléchargement.

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';
}

Représente l'état actuel et le progrès d'une tâche de téléchargement.

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';
}

Cette page est générée à partir du plugin’s src/definitions.ts. Re-run la synchronisation lorsque les public API changent en amont.

Continuez de la section « Début de l'expérience »

Section intitulée “Continuez de la section « Début de l'expérience »

Si vous utilisez Début de l'expérience planer le tableau de bord et les opérations API, connectez-le à En utilisant @capgo/capacitor-downloader pour la capacité native dans En utilisant @capgo/capacitor-downloader, API Vue d'ensemble pour le détail d'implémentation dans API Vue d'ensemble, Introduction pour le détail d'implémentation dans Introduction, API Clés pour le détail d'implémentation dans API Clés, et Appareils pour le détail d'implémentation dans Appareils.