带有PHP代理的JSON
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带有PHP代理的JSON相关的知识,希望对你有一定的参考价值。
Use php to get JSON1) set the PHP to the URL of the JSON
2) echo a variable with the loaded data
3) use a request via jQuery to get the variable from PHP
/* PHP FILE - names 'example.php' */ <?php echo $content; ?> /* jQuery making the request */ $.getJSON('example.php', function(data){ var items = []; $.each(data, function(key, val){ // do stuff with data log('key: ' + key + '. value: ' + val); }); });
以上是关于带有PHP代理的JSON的主要内容,如果未能解决你的问题,请参考以下文章
MySQL 数据从 PHP 到带有 JSON 的 Javascript