iOS停止随机发送httprequests [Titanium]

时间:2013-04-24 09:12:54

标签: javascript ios titanium httprequest appcelerator

我有一个应用程序每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.';
   }
}

1 个答案:

答案 0 :(得分:0)

从我的代码中可以看出,您没有为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和&amp;数据库调用,仅此而已。