Power Apps 如何以 hours:minutes:seconds 格式显示时间

Power apps how to display time in an hours:minutes:seconds format

我正在 power apps 中开发一个应用程序。我需要能够在 hours:minutes:seconds 中显示数字时间。使用 Now() 只会显示 hours:minutes.

如何在显示中添加秒数?

您可以将 Text Function to convert the date/time value that you get from the Now function 与您想要的格式一起使用:

Text(Now(), "hh:mm:ss")

如果你想让时间不断更新,那么你需要用一个Timer控件设置一个变量,然后在Text函数中使用那个变量。

例如,在计时器的 OnTimerEnd 属性 上,您会有类似

的内容
UpdateContext({now: Now()})

在你的标签上

Text(now, "hh:mm:ss")

请注意,在创作模式下计时器不会 运行,因此您需要预览应用程序(右上角的 "play" 按钮)以查看它的运行情况。它在已发布的应用程序中运行良好。