喜欢:
var json = 'http://hawttrends.appspot.com/api/terms/';$.getJSON(json, function(trends){ $.ajax({ type:'GET', url:json, dataType:'JSONP', data: trends, success: function(msg){ // do stuff with the msg } });});
由于
trends返回的数据来自
$.getJSON您,请稍后再运行AJAX。如果您具有服务器访问权限,则实际上没有理由这样做。
使用PHP:
<?php$dataArray = json_depre(file_get_contents('http://hawttrends.appspot.com/api/terms/'));// $dataArray has all data?>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)