我是phonegap的新人。链接api的任何指南或示例,例如http://openweathermap.org/。想在Android应用程序上从这个api获取数据
答案 0 :(得分:1)
使用jQuery mobile解析来自任何API的数据。 请遵循下面给出的代码和示例JSON。
$.getJSON('ajax/test.json', function(data) {
var items = [];
$.each(data, function(key, val) {
items.push('<li id="' + key + '">' + val + '</li>');
});
$('<ul/>', {
'class': 'my-new-list',
html: items.join('')
}).appendTo('body');
});
This example, of course, relies on the structure of the JSON file:
{
"one": "Singular sensation",
"two": "Beady little eyes",
"three": "Little birds pitch by my doorstep"
}