1

我在返回一个数组对象然后显示给用户时出现问题,请看演示代码。一个基本的片段,但它有相同的想法,我只是不能在这里发布很长的代码。

Class foobar{
   public function foo()
   {
     return array( 'bar' => 'value' );
   }
}

这个 php 代码被另一个类使用

Class foobar_fetcher{
   public function getFoo()
   {
     $fb = new foobar();
     $result = $fb->foo();
     return $result;
   }
}

foob​​ar_fetcher 再次由主执行器文件( ajaxdispatcher.php )调用 - 带有 json 标头。

if( isset( $_POST['fetch'] ) ){
   $httpresponse = new stdClass();
   $fb_fetch = new foobar_fetcher();
   $httpresponse->data = $fb_fetch->getFoo();
}

echo json_encode( $httpresponse );

最后,这个 ajaxdispatcher 被一个 jquery ajax 调用。

$.ajax({
  url: 'ajaxdispatcher.php',
  type: 'post',
  data: {fetch:'fetch'},
  success: function( data ){
      if( data ) console.log( data );
  }
});

现在,当我尝试打印数据时,它没有来自服务器的响应。但是当我将 foobar 类下的 foo() 的返回值更改为整数或字符串时。一切都会好起来的。

4

2 回答 2

2

您应该尝试将您的 ajaxdispatcher 更改为接受 GET 请求并从浏览器导航到那里以查看返回的内容。

if( isset( $_GET['fetch'] ) ){
   $httpresponse = new stdClass();
   $fb_fetch = new foobar_fetcher();
   $httpresponse->data = $fb_fetch->getFoo();
}

echo json_encode( $httpresponse );

导航到 /ajaxdispatcher.php?fetch=fetch

于 2012-08-23T05:23:43.220 回答
0

我会做的一些事情可能会提高你成功的机会

  1. exit在发送 JSON 代码后立即设置适当的 HTTP 标头

    header('Content-type: application/json');
    echo json_encode($httpresponse);
    exit;
    

    还要确保在此之前您没有向输出缓冲区发送任何数据。

  2. 告诉 jQuery 期望的数据类型

    $.ajax({
        dataType: 'json',
        // and the rest
    
  3. 添加error回调

    $.ajax({
        // snip
        error: function(jqXHR, textStatus, errorThrown) {
            console.log(jqXHR, textStatus, errorThrown);
        }
    });
    
于 2012-08-23T05:51:06.277 回答