Ajax没有调用回调函数

时间:2013-08-09 01:42:03

标签: php javascript jquery ajax json

我正在尝试从我的服务器上的端口8080上运行的服务获取JSON对象。我已经实现了以下JavaScript和PHP代码来实现这一目标:

JavaScript的:

$.ajax({
    type: 'GET',
    url: "mediainfo.php?file="+stream_,
    dataType: 'json',
    success: play,
    error: function( xhr, reply ) {
       play({});
    }
});

mediainfo.php:

<?php
    $url = "http://localhost:8080/media_info/" . $_GET['file'];
    echo file_get_contents($url);

然而,即使Ajax调用成功,它也永远不会调用回调。奇怪的是,如果失败(例如,如果$ url没有返回有效的JSON),它会调用回调。

我无法弄清楚出了什么问题。任何帮助将不胜感激。

编辑:

回调函数:

var play = function( info ) {
     if ( info.width && info.height ) {
         while ( info.width < 640 ) {
             info.width = Math.round( info.width * 1.5 );
             info.height = Math.round( info.height * 1.5 );
         }
         while( info.width > 1024 ) {
             info.width = Math.round( info.width / 2 );
             info.height = Math.round( info.height / 2 );
         }
     }

     var width = info && info.width || 640;
     var height = info && info.height || 480;
     var flashvars = {
         file : stream,
         streamer : "rtmp://myserver.com:1935/vodplayback",
         'rtmp.tunneling' : false,
         bufferlength : 5,
         autostart : true
     };
     var paramObj = {allowfullscreen : "true", allowscriptaccess : "always"};
     swfobject.embedSWF("http://myserver.com:8080/flu/jwplayer.swf", "videoplayer", width, height, "10.3", false, flashvars, paramObj, {id : "jwplayer", name : "jwplayer"});
  }
来自mediinfo.php的回复:

{"duration":69960.0,"width":720,"height":406} 

2 个答案:

答案 0 :(得分:1)

事实证明,函数声明的顺序与Ajax调用有关。谁知道^^

我在Ajax调用之后定义了回调函数。我把它们换了一圈,现在工作正常。

感谢您的回复。

答案 1 :(得分:0)

$.ajax({
    url: 'test.php',
    dataType: 'html',
    data: { test: 'test' },
    type: 'GET',
    success: function( data ) {
        console.log( 'success' );
        $( '#div2' ).html( data );
    },
    error: function( xhr ) {
        console.log( xhr.status );
    }

});

或者像这样

<?php
$url = "http://localhost:8080/media_info/" . $_GET['file'];
echo json_encode( Array(
    'data': file_get_contents( $url )
) );
?>

的javascript

$.ajax({
    url: 'test.php',
    dataType: 'json',
    data: { file: stream_ },
    type: 'GET',
    success: function( callback) {
        console.log( 'success' );
        $( '#div2' ).html( callback.data );
    },
    error: function( xhr ) {
        console.log( xhr.status );
    }

});