Nicolas
Nicolas

Reputation: 8670

Cordova Ajax request pending for ever

I have a cordova app and it worked fine until this morning. I think it has something to do with the new update to cordova 6.4.0.
Whenever I'm sending an AJAX request to my API and it stay in pending more for ever. I've waiting 15 minutes and they still havn't come back. I have the whitelist plugins updated, i added the correct info in the config.xml :

<plugin name="cordova-plugin-whitelist" spec="1" />
<allow-navigation href="*" />
<access origin="*" />

And there are the version of my cordova and plugins

cordova-plugin-compat 1.1.0 "Compat"
cordova-plugin-file 4.3.0 "File"
cordova-plugin-network-information 1.3.0 "Network Information"
cordova-plugin-whitelist 1.3.1 "Whitelist"
cordova-plugin-x-toast 2.5.2 "Toast"
phonegap-plugin-push 1.8.0 "PushPlugin"

Do you have any ideas on how to fix this Thanks

edit

Here is the code I am using to make Ajax request. I'm returning the Ajax element so I can attach a .done() or a .fail() function to it.

this.get = function($url, $data, $beforeSend) {
    /*if($url.indexOf('http') == -1) {
        $url = this.URL_API + $url;
    }*/
    $url = this.URL_API + $url;
    if(typeof $data !== 'object') {
        this.error('Erreurs de type de donnée.');
    } else {
        console.log($url);
        return $.ajax({
            url: $url,
            method: 'GET',
            data: $data,
            beforeSend: function(xhr) {
                if(typeof utils.userdata !== "undefined") {
                    xhr.setRequestHeader('X-API-KEY', utils.userdata.key);
                }
                xhr.setRequestHeader('Content-Type', 'application/json');
                console.log(utils.userdata);
                console.log($data);
                if($beforeSend !== null && typeof $beforeSend == "function"){
                    $beforeSend();
                }
            }
        });
    }
}

I'm also adding an X-API-KEY header to my request but that shouldn't be the problem.

Upvotes: 2

Views: 1072

Answers (1)

Kirankumar Dafda
Kirankumar Dafda

Reputation: 2384

As you said that it was working fine before updating it to new version of cordova

Then you can downgrade it with the below command and check if everything working fine again or not.

$ sudo npm install -g [email protected]

And if the problem remain same then there is the problem either from your ajax call or you need to check your API via postman and check if it is working fine or not.

Upvotes: 1

Related Questions