0

我正在使用 JQuery Datatables 使用 ajax 调用来获取服务器数据。我过去成功地做到了这一点。这次我尝试的新方法是使用 fnServerParams 传递 3 个参数。

在jsp中我有:

<script>
    <%--Initializes the datatable --%>
    var userNameJs = "${userName}";
    var startDateJs = "${startDate}";
    var endDateJs = "${endDate}";

    $(document).ready(function() {

            var oTable = $('#userSearchItems')
                .dataTable(
                    {
                    "bProcessing": true,
                    "iCookieDuration": 3600,
                    "bPaginate" : true,
                    "bServerSide": true,
                    "sPaginationType": "bootstrap",
                    "aaSorting":[[0,'asc']],
                    "sAjaxSource": '/kb/report/view/searchesByUserOverDatesAjax/{userName}/{startDate}/{endDate}',
                    "fnServerParams": function (aoData) {
                        aoData.push({ "name": "userName", "value": userNameJs});
                        aoData.push({ "name": "startDate", "value": startDateJs});
                        aoData.push({ "name": "endDate", "value": endDateJs});
                    }
                    });
    });
</script>

<table style="width: 100%; table-layout: fixed;" class="zebra-striped bordered-table" id="userSearchItems">
        <thead>
            <tr>
                <th>When Entered</th>
                <th >Search Term</th>
            </tr>
        </thead>
        <tbody>
           <tr>
               <td></td>
               <td style="word-wrap: break-word"></td>
          </tr>         
       </tbody>
    </table>

在 Spring 控制器中,我有:

@RequestMapping(value="/searchesByUserOverDatesAjax/{userName}/{startDate}/{endDate}{", method=RequestMethod.GET)
public @ResponseBody String searchesByUserOverDates(@PathVariable("userName") String userName,
    @PathVariable("startDate") String startDate, @PathVariable("endDate") String endDate) {
System.out.print("HERE IN AJAX");
    JSONObject result = new JSONObject();
    JSONArray array = new JSONArray();

我收到一个弹出错误:

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

但是方法 searchByUserOverDates() 永远不会执行。在 FireBug/Net 中,它显示我从 HTTP 调用收到了 200 OK,并且参数发送正常,但我的 sysout 和调试断点从未被命中。

它似乎没有调度该方法。我在日志或 js 错误控制台中没有收到任何错误。

我看到这个错误消息在 jQuery 1.4 之前存在一些 pre-JQuery 问题,但我们在 1.8

谢谢你的帮助

4

1 回答 1

0

啊愚蠢的东西...额外的{在java方法parm的末尾。

现在它起作用了。有趣的是,编译器或 Spring mvc 从未注意到这一点。

干杯

于 2013-02-21T18:40:39.067 回答