gpt4 book ai didi

android - PhoneGap 应用程序 - JSONP 请求在浏览器中发生,但不在设备上 (Android)

转载 作者:搜寻专家 更新时间:2023-11-01 09:01:40 26 4
gpt4 key购买 nike

我正在尝试在我的 PhoneGap 应用程序中进行 JSONP 调用。它在我的桌面浏览器中运行良好,但在设备中却不行。我认为这可能是 jQuery Mobile 的问题,所以我什至尝试禁用它,但没有帮助。

安卓版本:3.0

这是我的代码:

<link rel="stylesheet"  href="css/themes/default/jquery.mobile-1.1.0.css" />
<script src="js/jquery.js"></script>
<script src="js/jquery.mobile-1.1.0.js"></script>
<script src="cordova-2.1.0.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
function cancelclicked() {
window.location.href="index.html";
}

function jsonp_call()
{
// The call request here
}
function parseRequest(response)
{
// Parse the response here
}
</script>

<div data-role="page" class="type-interior">

<div data-role="header" data-theme="b">
<h1>Login</h1>
</div>
<div data-role="content">
<div class="content-primary">
<div data-role="fieldcontain">
<label for="name">Username:</label>
<input type="text" id="uname" />
</div>

<div data-role="fieldcontain">
<label for="name">Password:</label>
<input type="password" name="name" id="pass" />
</div>
<div data-role="fieldcontain">
<label for="name" id="invalidlogin"></label>
</div>
<div class="ui-body ui-body-b">
<fieldset class="ui-grid-a">
<button type="submit" onclick="return jsonp_call()" data-theme="e" rel="external">Login</button>
<!--</form>-->
<button type="submit" onclick="cancelclicked()" data-theme="d">Cancel</button>
</fieldset>
</div>
</div>
</div>

我在这里错过了什么?它在浏览器上运行良好,所以我很确定 JSONP 代码是正确的。它在模拟器和设备上也失败了。

最佳答案

您是否将域名添加到 Cordova 配置文件中?在res/xml/config.xml下

<access origin="bla.bla.domain.com" />

关于android - PhoneGap 应用程序 - JSONP 请求在浏览器中发生,但不在设备上 (Android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14664780/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com