Nativescript真实设备日期和时间

时间:2019-05-17 07:35:57

标签: javascript angular firebase nativescript

有没有一种方法可以获取设备的日期和时间?自动一。如果用户禁用自动输入日期和时间并选择自己的日期和时间,则会使我的应用程序崩溃。我也在用firebase

1 个答案:

答案 0 :(得分:1)

无法在iOS上检测到该信息,但是在Android上您可以执行此操作。

if (application.android) {
        if (android.provider.Settings.Global.getInt(application.android.context.getContentResolver(), android.provider.Settings.Global.AUTO_TIME, 0) !== 1) {
            console.log("Date / Time preference is not set to auto!!!");
        }
    }

在iOS上,唯一的选择可能是使用简单的api将本地日期时间与服务器的日期时间进行比较,请确保您包含时区信息。