我想将 jQPlot 与 Struts 一起使用,我有一个来自 struts 操作的 json 结果输出,例如:
{
"jqPlotJSONFormat":
"['18-03-2010',56],['19-03-2010',43],['17-03-2010',84]"
}
但我想获得如下数据:
['18-03-2010', 56],
['19-03-2010', 43],
['17-03-2010', 84]
这是我的动作映射:
@Action(value="getData", results = {
@Result(name="success",type = "json", params = {
"includeProperties","jqPlotJSONFormat"
})})
我想在 json 结果中隐藏 jqPlotJSONFormat