1

我正在使用 jqPlot,因为我找不到一个像样的地方来了解如何通过 JSON 将多个系列发送到 jqplot,我将尝试解决它。

所以这里有一点背景:

现在,我可以调用我的 servlet 并返回一个 JSON 数组,其中包含要在图表中显示的数据。

AJAX 调用

$.ajax({
            type:   'POST',
            cache:  'false',
            data:   params,             
            url:    '/miloWeb/PlotChartServlet',
            async:  false,
            dataType: 'json',
            success: function(series){                  
                coordinates =  [series] ;
            },
            error: function (xhr, ajaxOptions, thrownError){
                alert(ajaxOptions);
            }   
        });

伺服器

    private void generateCoordinates(HttpServletRequest request, HttpServletResponse response) throws IOException{

    JSONArray coordinates = new JSONArray();
    try {
        coordinates = findChartCoordinatesByPatientPK();
    } catch (JSONException e) {
        e.printStackTrace();
    }
    response.getOutputStream().print(coordinates.toString());

}

这样做是返回字符串:

[["07/06/2000","22.0"],["08/06/2000","20.0"],["08/06/2003","15.0"],["08/06/2005 ","35.0"],["08/06/2007","12.0"],["08/06/2010","10.0"],["08/06/2012","10.0"]]

所以我将它存储在变量“坐标”中,并使用这些来绘制 jqPlot 图:

var plot10 = $.jqplot ('chartdiv', coordinates);

到目前为止,一切都很好,现在是我想要实现的目标:

如果我硬编码一个字符串来表示另一个数组中的两个数组,如下所示:

[[["07/06/2000","22.0"],["08/06/2000","20.0"],["08/06/2003","15.0"],["08/06/2005","35.0"],["08/06/2007","12.0"],["08/06/2010","10.0"],["08/06/2012","10.0"]], [["07/06/2000","21.0"],["08/06/2000","19.0"],["08/06/2003","14.0"],["08/06/2005","34.0"],["08/06/2007","11.0"],["08/06/2010","9.0"],["08/06/2012","9.0"]]]

我可以让 jQplot 在图表中绘制两条不同的线!所以我尝试做同样的事情并通过 servlet 返回一个与该字符串完全相同的字符串:

不工作的服务器

    private void generateCoordinates(HttpServletRequest request, HttpServletResponse response) throws IOException{
        JSONArray coordinates = new JSONArray();
        JSONArray coordinates2 = new JSONArray();
        try {
            coordinates = VitalsBB.findChartCoordinatesByPatientPK();
            coordinates2 = VitalsBB.findChartCoordinatesByPatientPK2();
        } catch (JSONException e) {
            e.printStackTrace();
        }
        response.getOutputStream().print( coordinates.toString() + ", " + coordinates2.toString());

    }

但这不起作用,它给了我一个解析错误。那么我需要修改AJAX调用吗?或者有没有办法将两个返回JSON arrays.toString()给我的表单并将它们存储在一个变量中?或者也许我需要两个变量?

4

1 回答 1

7

当您调用response.getOutputStream().print().

试试这个:

response.getOutputStream().print("[" + coordinates.toString() + ", " + coordinates2.toString() + "]");

如果您的代码在您对数组进行硬编码时有效,那么这应该有效。

于 2012-07-11T20:57:53.550 回答