我有一个应用程序,它每5秒钟发送一次地理位置,如果找不到新位置,则每分钟发送一次。因此,基本上,应用程序无法停止将地理位置发送到PHP文件。

虽然如此。完全是随机的。该应用程序只是立即停止发送到服务器而没有错误(因为我在出现错误时发出了警报),并且在我打开该应用程序以查看发生了什么时才再次开始重新发送。

顺便说一句,它似乎在Android上运行良好!

我在info.plist中有一些东西可以保持它的生命(并且它确实可以保持生命,但是我想只是停止随意地生活):

<key>UIBackgroundModes</key>
<array>
    <string>external-accessory</string>
    <string>location</string>
</array>

我的httprequest看起来像这样:
    function sendCoordinates() {
        //Reset the visual text(errors/succesmessage etc)
        if (Titanium.Network.online) {

            //Concat the GPSholder array into the toSend and than empty the GPSholder.
            //To toSend accumulates GPSholder arrays in case it can't be sent for some reason but avoids getting duplicates in the GPSholder
            //the toSend is emptied out after a succesful save.
            toSend = toSend.concat(getGPSholder());
            GPSholder = [];
            if (toSend.length > 0) {
                GPSSaved.text = '';
                minuteInterval = 0;
                var xhr=Titanium.Network.createHTTPClient({enableKeepAlive: false});
                xhr.open("POST","http://xxx.nl/website/services/esrm_tracker/push_tt_positions.php");
                xhr.onload = function(){

                    if(this.status == '200'){

                        if(this.readyState == 4){
                            var result = JSON.parse(this.responseText);

                            switch(result.result) {
                                case 1:
                                    secondsLastSent = 0;
                                    counterBlock.text = "De laatste locatie is " + secondsLastSent + " seconden geleden verstuurd";
                                    counterBlock.show();
                                    toSend = [];
                                break;

                                case -1:
                                    GPSSaved.text = 'Authorisatie code niet geldig. Er worden geen locaties meer verstuurd.';
                                GPSstop();
                            break;

                            case -2:
                                GPSSaved.text = 'Locaties niet geldig';
                            break;

                            case -3:
                                GPSSaved.text = 'Authorisatie code niet gevonden. Er worden geen locaties meer verstuurd.';
                                GPSstop();
                            break;

                            case -10:
                                GPSstop();
                            break;

                            default:
                                GPSSaved.text = 'Onbekende fout. Er worden geen locaties meer verstuurd.';
                                GPSstop();
                            break;
                        }
                    }
                }
            }
            xhr.onerror = function(e){
                GPSSaved.text = e.status + ' <- error';
                alert(e);
            };

            xhr.timeout = 10000;

            xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
            var str = JSON.stringify(toSend);
            var params = {
                auth_key : auth_key,
                locations : str
            };

            xhr.send(params);
        }
   } else {
        GPSSaved.text = 'Geen internet. Het versturen van locaties wordt hervat als de verbinding is hervat.';
   }
}

最佳答案

从您的代码可以看出,您没有为iOS注册后台任务。您只打算通过配置来完成它。

我也不认为它是随机的,而是在应用程序关闭后的5分钟之后。此时,应用pauses直到再次打开为止,因此它将继续传输位置。

您应该看看以下文档:http://docs.appcelerator.com/titanium/latest/#!/api/Titanium.App.iOS.BackgroundService

var service = Ti.App.iOS.registerBackgroundService({url:'bg-service1.js'});

请注意,它将运行一个不同的实例,并且您不应将整个应用程序都包含在此后台服务中,因为它也没有UI。为此创建一个单独的文件,其中包含所需的http和数据库调用。

07-24 09:49
查看更多