我一直收到这个错误:
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 }
答案 0 :(得分:1)
不要使用
requirements: { _method: POST }
此外,您确定要使用bServerSide = true
吗?