I created a mobile application using the phonegap framework and it worked well in ios and android but the problem is that the ajax jquery code does not work on android
Thank you for helping me find a solution
ajax jquery code
$ (document) .ready (function () {
$ .Ajax ({
url: "http://rest-service.guides.spring.io/greeting"
}). then (function (data) {
. $ ( '. Greeting-id') append (data.id);
. $ ( '. Greeting-content') append (data.content);
});
答案 0 :(得分:0)
在处理要访问互联网的应用程序时,您需要在androidManifest.xml中添加额外的权限,否则您的应用程序将无法访问互联网。 因此,您需要在AndroidManifest.xml文件中放置以下代码,以访问应用程序中的互联网。
在AndroidManifest.xml文件中添加以下权限。
步骤1:
Go to app -> src -> main -> AndroidManifest.xml.
第2步:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />