开始
复制一个包含安装步骤和本插件的完整 Markdown 指南的设置提示。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-background-task`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/background-task/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
@capgo/capacitor-background-task 允许一个 Capacitor 应用程序注册周期性任务、缓存刷新、分析数据传递和其他后台抓取操作。
您可以使用我们的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-background-task` plugin in my project.如果您prefer手动设置,安装插件并运行以下命令,遵循以下平台特定的说明:
npm install @capgo/capacitor-background-tasknpx cap sync添加背景处理模式和允许的任务标识符到 ios/App/App/Info.plist:
<key>UIBackgroundModes</key><array> <string>processing</string></array><key>BGTaskSchedulerPermittedIdentifiers</key><array> <string>app.capgo.backgroundtask.processing</string></array>然后运行:
npx cap sync ios导入
导入import { BackgroundTask, BackgroundTaskResult } from '@capgo/capacitor-background-task';定义一个任务
定义一个任务在模块作用域中定义回调函数,以便在操作系统启动应用程序时立即注册。
import { BackgroundTask, BackgroundTaskResult } from '@capgo/capacitor-background-task';
const SYNC_TASK = 'sync-offline-data';
BackgroundTask.defineTask(SYNC_TASK, async () => { try { await fetch('https://api.example.com/sync', { method: 'POST' }); return BackgroundTaskResult.Success; } catch { return BackgroundTaskResult.Failed; }});调用 registerTaskAsync 在您的应用程序有足够的上下文后,启用后台作业。
await BackgroundTask.registerTaskAsync(SYNC_TASK, { minimumInterval: 30, requiresNetwork: true,});minimumInterval 分钟。Android强制执行最少15分钟。iOS将值视为最早开始日期并可能稍后运行。
检查状态
复制到剪贴板const status = await BackgroundTask.getStatusAsync();const isRegistered = await BackgroundTask.isTaskRegisteredAsync(SYNC_TASK);const registeredTasks = await BackgroundTask.getRegisteredTasksAsync();
console.log({ status, isRegistered, registeredTasks });检查状态
复制到剪贴板触发测试运行
await BackgroundTask.triggerTaskWorkerForTestingAsync();取消一个任务
取消一个任务await BackgroundTask.unregisterTaskAsync(SYNC_TASK);iOS失效
iOS失效iOS可以在JavaScript工作完成之前停止一个后台任务。请在清理或检查点时监听失效事件。
const expiration = await BackgroundTask.addExpirationListener((event) => { console.warn('Background task expired', event.taskName, event.taskId);});
await expiration.remove();React Native后台任务兼容性
取消一个任务该插件还暴露了从 react-native-background-task.
import { BackgroundTask } from '@capgo/capacitor-background-task';
BackgroundTask.define(async () => { await fetch('https://api.example.com/sync', { method: 'POST' });});
await BackgroundTask.schedule({ period: 1800,});生产说明
生产注意事项- 后台调度是机会主义的,而不是精确的。
- 保持工作短暂且幂等。
- 在返回之前持久任何需要的状态。
BackgroundTaskResult.Success. - 避免依赖后台任务来实现用户可见的截止日期或闹钟。
继续从开始
继续从开始如果您正在使用 开始 来规划原生插件工作,连接它与 使用 @capgo/capacitor-后台任务 来实现在使用 @capgo/capacitor-后台任务 中的原生能力 Capgo 插件目录 为产品工作流程在 Capgo 插件目录 Capacitor 插件由 Capgo 为实现细节在 Capacitor 插件由 Capgo 添加或更新插件 为实现细节在添加或更新插件, 和 Ionic 企业插件替代品 为产品工作流程在 Ionic 企业插件替代品。