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
Solution 1:
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 cordova@6.2.0
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.
Post a Comment for "Cordova Ajax Request Pending For Ever"