Struts で jQPlot を使用したいのですが、次のような 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を隠したい