发布到php的Ajax以某种方式失败

时间:2015-06-11 11:30:50

标签: javascript php jquery ajax

$(document).ready(function() {
    var feed = $("#instagramFeed .wrap");
    $.ajax({
        type: "POST"
        url: "<?= path("instagram_feed.php"); ?>",
        data: { feed_url: "http://iconosquare.com/feed/test", instagram_url: "http://instagram.com/test", $cache_file: "feed.txt" },
        success: function(data) {
            console.log("SUCCESS");
            feed.html(data).find("img").show();
        }
    });
});

instagram_feed.php:

function getInstagramFeed($feed_url, $instagram_url, $cache_file) {
 //bla bla bla
}
    $feed_url = $_POST['feed_url'];
    $instagram_url = $_POST['instagram_url'];
    $cache_file = $_POST['cache_file'];

    echo $feed_url;

    getInstagramFeed($feed_url, $instagram_url, $cache_file);

有人可以帮我弄清楚什么是错的?如果我使用预设值调用函数,该脚本可以工作,似乎是ajax请求错误。

如果我getInstagramFeed("http://example.example", "http://example.example", "cache_file");它可以正常工作

0 个答案:

没有答案