gpt4 book ai didi

javascript - 如何使用 Cordova 从 url 获取 json 数据?

转载 作者:行者123 更新时间:2023-11-29 19:18:26 24 4
gpt4 key购买 nike

我开始使用 Cordova 为 android 开发一个应用程序,我现在正在谷歌搜索解决方案(白名单)以从 URL 获取 JSON 数据。但我找不到简单的教程。我发现的大多数教程都不是那么适合初学者。我正在考虑尝试使用纯 javascript 获取 JSON 数据,但我认为这不是一个好主意。有没有一些简单的技巧或教程可以解决这个问题?我很高兴收到你的来信!

最佳答案

像这样?假设 hello.php 返回您的 JSON 数据。

    $.ajax({
url: "yourwebsite.com/hello.php",
type: 'GET',
dataType: 'json',
contentType: "application/json; charset=utf-8",
success: function (arr) {
_getdata(arr);
},
error: function () {
validationMsg();
}
});

function _getdata(arr){
//your JSON resuls are now in arr. Do what you need with the array.
}

关于javascript - 如何使用 Cordova 从 url 获取 json 数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42930500/

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