1

我不断收到此错误:

DataTables 警告:无法解析来自服务器的 JSON 数据。这是由 JSON 格式错误引起的。

我不确定问题是什么。是不是路由不正确?我验证了使用http://jsonlint.com/生成的 json 文件是有效的。

控制器:公共函数 indexAction($id) {

    return $this-render('CetiucValidateSurveyBundle:Validate:validatespreadsheet.html.twig');



}

具有 javascript 和表格的 twig(view) 文件。

validatespreadsheet.html.twig':

<table id="myDataTable" >
   <thead>
   <tr>
       <th>Company name</th>
       <th>Address</th>
       <th>Town</th>
   </tr>
   </thead>
   <tbody>



   </tbody>

用于从控制器检索表数据的 javascript:

<script language="JavaScript" type="text/javascript">
$(document).ready(function () {
    $('#myDataTable').dataTable(

            {
                "bProcessing": true,
                "bServerSide": true,
                "sAjaxSource": "{{ path('CetiucValidateSurveyBundle_renderJson')}}"
            }

    );

});

控制器中用于将数据返回给视图的方法

public function renderJsonAction(Request $request)
{


    $arr = array ('aaData' => array(
        array('3','35','4', '$14,500', '$15,200','$16,900','5','1'),
        array('1','16','4', '$14,200', '$15,100','$14,900','Running','1'),
        array('5','25','4', '$14,500', '$15,600','$16,900','Not Running','1')
    )
    );

    $post_data = json_encode($arr);

    return new Response( $post_data,200,array('Content-Type'=>'application/json'));//make sure it has the correct content type

}

这是返回 json 的操作的路由条目

CetiucValidateSurveyBundle_renderJson:
   defaults: { _controller: "CetiucValidateSurveyBundle:Validate:renderJson" }
   pattern:   /json
   requirements: { _method: POST }
4

1 回答 1

1

不要使用

requirements: { _method: POST }

另外,您确定要使用bServerSide = true吗?

于 2012-10-12T20:42:08.393 回答