gpt4 book ai didi

javascript - 如何检查此回调的返回

转载 作者:行者123 更新时间:2023-11-30 08:07:56 25 4
gpt4 key购买 nike

如果涉及到回调,我完全是个新手,所以我尝试了一些谷歌搜索。但是代码(有人在论坛上给我的)与我遇到的回调示例非常不同。

任何人都可以详细说明我如何检查此结果的真假吗?

exports.testGPS = function(_callback) {
Ti.Geolocation.purpose = "Recieve User Location";
Ti.Geolocation.accuracy = Titanium.Geolocation.ACCURACY_BEST;
if (_callback && typeof(_callback)==='function') {
Ti.Geolocation.getCurrentPosition(function(e) {
_callback ((e.error) ? false: true);
});
}
}

这是我的电话:

functions.testGPS(function () {
//If true/false
});

最佳答案

为您的函数声明一个参数:

functions.testGPS(function (thereWasAnError) {
if (thereWasAnError) {
// do stuff
}
});

关于javascript - 如何检查此回调的返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14896061/

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