PhoneGap Android Device Ready but no Ajax

一曲冷凌霜 提交于 2019-12-11 13:18:40

问题


I wonder if my problem is my ajax call is to http, not https. Must I call with https or can I call with http?

I am compiling with PhoneGap cloud cli-5.2.0 ( iOS 3.9.1 / Android 4.1.1 / Windows 3.8.1)

I compile my package, install it on my Android Samsung, it starts up, and my $.ajax errors

errorThrown:undefined textStatus:error data:{"readyState":4,"responseText":"","status":404,"statusText":"Not Found"}

Any suggestions/ideas?

I read the following: jQuery Mobile + Phonegap on Android - no Ajax but its two years old and relates to an older version of phonegap.

My code requires no special magic - I do include phonegap.js but I do not use gps, camera, contacts etc etc

Using the code below, I do get my "deviceready" and "document ready" displayed. When I click on my login button (id='demologin') the function DemoLogin() is executed.

function onDeviceReady() {
    $("#demologin").on("click", DemoLogin );

    $("#demologin").after("<h3>deviceready</h3>");
    return true;
}

    $(document).ready(
    function()
    {
        document.addEventListener("deviceready", onDeviceReady, false);
        $("#demologin").after("<h3>document ready</h3>");
    });

If I were to guess, the ajax "404" leads me to believe its calling a URL that does not exist hence why I wonder if Android expects me to call https instead of http. The problem I have with this is the code works on iOS so I would have thought PhoneGap magic would lead me to believe if it runs on one, it would run on the other.

All help appreciated!


回答1:


I also use ajax on phonegap app and it work good. You can make call to http. I think the url you called does not exist or there may be connection problems like when data is switched off.




回答2:


This is a old question but, possibly the solution will help someone who is googling it.

Add this code to your config.xml file:

<gap:plugin name="cordova-plugin-whitelist" source="npm" />
<access origin="*" />

because new release of Cordova need whitelist plugin.



来源:https://stackoverflow.com/questions/32574897/phonegap-android-device-ready-but-no-ajax

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!