我无法让这个ajax调用工作,没有json输出

时间:2013-08-31 17:40:35

标签: json html5 api proxy mashery

我的html中有以下代码。我无法保持警觉,不能寄回任何东西。

    $.ajax({
    url:"proxy.php?url=http%3A%2F%2Fapi.rottentomatoes.com%2Fapi%2Fpublic%2Fv1.0%2Flists%2Fmovies%2Fupcoming.json%3Fpage_limit%3D16%26page%3D1%26country%3Dus%26apikey%3Dk4uaze4937mw3hf82upstxqw%0A",
    type:'GET',
    dataType:"json",
    success:function(data){var title1 = data.movies[1].title; alert (title1);}
});

这是我的proxy.php文件。

<?php
    // File Name: proxy.php
    if (!isset($_GET['url'])) die();
    $url = urldecode($_GET['url']);
    $url = 'http://' . str_replace('http://', '', $url); // Avoid accessing the file system
    echo file_get_contents($url);

我正在使用代理,因为我尝试连接的服务器没有jsonp。

这是我打电话的api和json http://api.rottentomatoes.com/api/public/v1.0/lists/movies/upcoming.json?page_limit=16&page=1&country=us&apikey=k4uaze4937mw3hf82upstxqw

1 个答案:

答案 0 :(得分:0)

现在有效。 JSONP没问题,你可以在没有PHP的情况下使用它。

<script type="text/javascript">

        $( document ).ready(function() {

            $.ajax({

                url:'http://api.rottentomatoes.com/api/public/v1.0/lists/movies/upcoming.json?page_limit=16&page=1&country=us&apikey=k4uaze4937mw3hf82upstxqw',
                type:'GET',
                dataType:'jsonp',

                success:function(data){

                    alert(data);

                    var title1 = data.movies[1].title; 
                    alert(title1);

                },

                error: function(xhr, textStatus, errorThrown){
                    alert(xhr);
                    alert(textStatus);
                    alert(errorThrown);
                }



            }); 



        });

    </script>