gpt4 book ai didi

javascript - 无法在 Android 中获取 Phone Gap 来提供当前时间

转载 作者:行者123 更新时间:2023-12-02 19:48:20 25 4
gpt4 key购买 nike

我正在使用 Phone Gap 开发 Android 应用程序,但在获取 javascript 文件中的当前时间时遇到问题。

我尝试使用标准 Date() 调用,但什么也没得到。

function getCurrentTime(){
//get current time
var currentTime = new Date();
var timestamp = JSON.stringify(currentTime);
console.log('current time: ', timestamp);
}

打印“当前时间:”

我在phonegap文档中找到的唯一其他引用是:

var onSuccess = function(position) {
alert('Latitude: ' + position.coords.latitude + '\n' +
'Longitude: ' + position.coords.longitude + '\n' +
**********'Timestamp: ' + new Date(position.timestamp) + '\n');
};

//
function onError(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
}

navigator.geolocation.getCurrentPosition(onSuccess, onError);

我尝试使用它,但它仍然没有打印任何内容。有什么想法吗?

    var success = function(p) {
bkme.flags.gettingLocation = false;
bkme.data.geolocation = {
'lat' : p.coords.latitude,
'lon' : p.coords.longitude,
'accuracy' : p.coords.accuracy,
'valid' : true
};

console.log('time:', new Date(p.timestamp));


};
var fail = function(error) { };

navigator.geolocation.getCurrentPosition(success, fail);

最佳答案

这就是我在我的应用程序中使用的内容,并且运行良好

var date = new Date();
var hour = date.getHours();
var min = date.getMinutes();
var seconds = date.getSeconds();

希望对你有帮助

关于javascript - 无法在 Android 中获取 Phone Gap 来提供当前时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9614357/

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