-1

我有 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 显示无响应(空白)。

此页面在我的本地主机中工作,但在线显示错误请帮助我

提前谢谢

4

1 回答 1

1

通话没有任何问题ajax

mindex.php您必须需要以json格式返回输出。

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

于 2013-02-15T07:48:37.717 回答