gpt4 book ai didi

react-native - 如何在 React Native 中实现 cron 作业?

转载 作者:行者123 更新时间:2023-12-05 06:27:04 28 4
gpt4 key购买 nike

我是 react-native 和实现简单应用程序的新手,其中应用程序将监视手机的时钟时间并且应该设置一些标志以便在用户启动应用程序时通知用户执行某些任务。

我想在 React Native 应用程序中作为后台作业持续监控移动设备的时钟时间,这样,当用户打开应用程序时,如果特定时间已经过去,它应该设置一些标志以做出 future 的决定。

在对博客进行一些研究之后,我发现可以使用 react-native-background-task 和/或 background-timers。但我发现实现起来很困难。任何人都可以帮助我实现相同的示例。先感谢您。

最佳答案

因此,根据您的帖子,我将假设一些事情。一种是您将在 Android 和 iOS 上进行开发,您只想使用插件(而不是自己编写模块)。

不幸的是,除非我弄错了 - 没有简单的答案,我会解释。

随着 Android 和 iOS 的发展,它们开始限制应用程序在后台的使用,特别是 Android 进入“打瞌睡”模式,而 iOS 以类似的方式工作。

对于 Android,您需要考虑一些事情,我将重点关注它们,因为您需要在实际创建 RN 应用程序之前了解这些内容。

打瞌睡模式

Starting from Android 6.0 (API level 23), Android introduces twopower-saving features that extend battery life for users by managinghow apps behave when a device is not connected to a power source. Dozereduces battery consumption by deferring background CPU and networkactivity for apps when the device is unused for long periods of time.App Standby defers background network activity for apps with which theuser has not recently interacted.

While the device is in Doze, apps' access to certain battery-intensiveresources is deferred until maintenance windows. The specificrestrictions are listed in Power Management Restrictions.

Doze and App Standby manage the behavior of all apps running onAndroid 6.0 or higher, regardless whether they are specificallytargeting API level 23. To ensure the best experience for users, testyour app in Doze and App Standby modes and make any necessaryadjustments to your code. The sections below provide details.

重要的是,您需要注意:

The system does not allow sync adapters to run.

The system does not allow JobScheduler to run.

因此,首先对于 Android,您(可能)需要确保您的应用在“白名单”中。您可以在此处查看列表的要求:

https://developer.android.com/training/monitoring-device-state/doze-standby

或者,您可以使用如下插件访问维护窗口:

https://github.com/transistorsoft/react-native-background-fetch

测试

Android 为您提供了一些工具来执行此操作,主要是运行:

$ adb shell dumpsys battery unplug
$ adb shell am set-inactive <packageName> true

headless JS

您可以查看适合您情况的 headless 任务:

https://facebook.github.io/react-native/docs/headless-js-android

注意事项:

虽然 Android 声明操作系统本身的行为与记录的一样,但设备本身可以内置软件,这些软件基本上会杀死后台进程。诺基亚是最糟糕的公司之一。所以请注意这一点。

关于react-native - 如何在 React Native 中实现 cron 作业?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55627092/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com