微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

具有“时间”功能的页面

如何解决具有“时间”功能的页面

我想只在一天的比赛中以及3小时内提供“ decibels”页面(例如,比赛从20pm开始,该页面可能在19h到22H之间可用)

我发现如何只用日期而不是时间来做。

// Admin SDK API to generate the password reset link.
const userEmail = 'user@example.com';
admin.auth().generatePasswordResetLink(userEmail,actionCodeSettings)
  .then((link) => {
    // Construct password reset email template,embed the link and send
    // using custom SMTP server.
    return sendCustomPasswordResetEmail(email,displayName,link);
  })
.catch((error) => {
  // Some error occurred.
});

如果有人有解决方案:D预先谢谢您!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。