Ajax调用总是返回错误函数

时间:2013-02-15 07:18:51

标签: php jquery ajax

我有一个php页面,页面显示在iframe中,该页面包含一个ajax调用  代码如下所示

      $.ajax({
            url: "mindex.php",
            data: {
                model: "test",
                handler: "test_123",
                data: info
            },
            type: "post",
            dataType: "json",
            success: function(response){
                if( response.success ){
                    createChart( response.times );
                }else{
                    $('#chart-container').html( '<p style="margin: 20px 100px; color: rgb(204, 71, 71);">'+response.errors+'</p>' );
                }
            },
            error: function(){
                alert("Unknown error Occured");
            }
        });

运行此页面后,始终显示“未知错误已发布”; Firebug没有响应(空白)。

此页面在我的localhost中工作,但在线显示错误 请帮助我

预先

thax

1 个答案:

答案 0 :(得分:1)

ajax来电没有问题。

来自mindex.php您必须以json格式返回输出。

echo json_encode($response);文件中使用mindex.php