从另一个站点获取JSON并转换为数组或csv

从另一个站点获取JSON并转换为数组或csv,第1张

从另一个站点获取JSON并转换为数组或csv

喜欢:

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?>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4926442.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存