本文介绍了从网址获取json并想要访问谷歌应用商店的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要通过ajax点击这个http://sonnes.apple.com/rss/customerreviews/id=338010821/json上的这个json。
1.我可以这样做吗?
2.我写了这段代码。这是正确的吗?
$。getJSON( http ://itunes.apple.com/rss/customerreviews/id=338010821/json,{format: json})。done( function (data){
$ .each(data.items, function (i,item){
debugger ;
var dd = item;
});
});
实际上,
我需要获取Play商店的google api密钥,以便显示KPI的趋势?
解决方案
Hi,
I need to retrive this json which is placed on this http://itunes.apple.com/rss/customerreviews/id=338010821/json through ajax hit .
1. Can i do this ?
2. i wrote this code. is that correct ?
$.getJSON("http://itunes.apple.com/rss/customerreviews/id=338010821/json", { format: "json" }).done(function (data) { $.each(data.items, function (i, item) { debugger; var dd = item; }); });
Actually,
I need to get the google api key for play store so that i can show the KPI's trend?
解决方案
这篇关于从网址获取json并想要访问谷歌应用商店的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!