如何安排将每月第1天执行的任务并更新Firebase实时数据库中的值

时间:2017-08-14 09:27:33

标签: android firebase firebase-realtime-database

我在我的Android应用程序中使用firebase实时数据库。我有每个人的详细信息以及字段feepaidforcurrentmonth boolean.I有2个片段费用和feenotpaid。当支付当前月份的费用feepaidforcurrentmonth成为真,并在firebase数据库中更新,该成员将被添加到feenotpaid的费用片段列表中。

我的问题是如何在firebase /或我的应用中安排任务,以便每月的第一天将字段feepaidforcurrentmonth的值设置为false?如何在firebase数据库中更新它?

1 个答案:

答案 0 :(得分:2)

这听起来像是你应该在后端而不是前端(你的应用)做的任务。

您可以使用外部自编写和托管后端,例如由cron选项卡触发的python。

Here's a blog post from firebase about the topic。他们正在使用Google App Engine根据时间/日期触发。