gpt4 book ai didi

javascript - 无法在 PhoneGap 应用程序中解析 JSON

转载 作者:行者123 更新时间:2023-12-01 17:43:37 25 4
gpt4 key购买 nike

我使用 PhoneGap Build 创建了一个简单的 PhoneGap 应用程序。我有一个 MySQL 数据库并编写了一个简单的 PHP 文件来从中读取一些数据并将其作为 JSON 格式提供。我尝试在 PhoneGap 应用程序的 HTML 文件中读取该信息,但我的手机没有显示任何内容。谁能帮我找出问题所在?我还在我的应用程序中添加了 cordova-plugin-inappbrowser 插件。这是我使用的代码示例:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>READ JSON Example (AJAX)</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.ajax({
type: "GET",
url: "http://phonegappro.esy.es/test/json.php",
crossDomain: true,
cache: false,
success: function(result){
var result=$.parseJSON(result);
$.each(result, function(i, field){
$("#output").append("Title: "+ field.title + " duration: "+field.duration +" Price:"+field.price+"<br/>");
});
}
});
});
</script>
</head>
<body>
<div id="output"></div>
</body>

最佳答案

我找到了答案:我添加了一个 PhoneGap Build 白名单插件,然后它在安卓设备上也能正常工作。这是插件:<plugin name="com.indigoway.cordova.whitelist.whitelistplugin" spec="1.1.1" source="pgb" />

此外,在我的 config.xml 文件中,我有:<access origin="*"/>也是

关于javascript - 无法在 PhoneGap 应用程序中解析 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38839829/

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