AJAX呼叫不适用于phonegap APK构建

时间:2019-05-17 01:30:18

标签: android jquery ajax cordova phonegap

使用build.phonegap时,我所有的ajax调用均不起作用,它以网站形式工作,并且使用该应用程序连接到服务器时,但是一旦我构建了AJAX调用,便会通过,但不会在该应用程序上更新(如果单击该网站,我会在apk上看到所做的更改,但在电话上看不到

我的config.xml文件是

<widget id="com.phonegap.helloworld" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" xmlns:android = "http://schemas.android.com/apk/res/android">
    <name>Carello</name>
    <description>
       Carello
    </description>
    <author email="support@phonegap.com" href="http://phonegap.com">
        PhoneGap Team
    </author>
    <content src="index.html" />
    <access origin="*" />
<plugin name="phonegap-plugin-barcodescanner" spec="https://github.com/jrontend/phonegap-plugin-barcodescanner" />

    <engine name="browser" spec="~5.0.4" />
    <engine name="android" spec="^7.1.4" />
    <plugin name="cordova-plugin-whitelist" spec="1.3.3" />
    <config-file target="AndroidManifest.xml" parent="/*" mode="merge">
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-feature android:name="android.hardware.camera" />
    <uses-feature android:name="android.hardware.camera.autofocus" />
</config-file>
    <access origin="*" launch-external="yes" />
    <content src="index.html" />
    <allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
    <gap:platform name="android" />
</widget>

我也有

<meta http-equiv="Content-Security-Policy" content="default-src * 'self' 'unsafe-inline' data: gap: 'unsafe-eval'; style-src * 'self' 'unsafe-inline';  connect-src * ;  script-src * 'self' 'unsafe-inline';  media-src *">

在我的html文件中。

2 个答案:

答案 0 :(得分:1)

<uses-permission android:name="android.permission.INTERNET" /> 文件中添加以下权限。

df

答案 1 :(得分:0)

尝试将其添加到您的config.xml中:

<allow-intent href="*" />
<allow-navigation href="*" />

请注意,它仅用于调试,当您的应用程序已准备好投入生产时,您必须通过域将replace *限制为该字段。