Json数据

Json数据

前后端对JSON数据的处理

前端数据

[
    {alias: "区域", cacheable: false, cacheableStr: "", cdValue: "", checkDescendents: false},
    {alias: "城市", cacheable: false, cacheableStr: "", cdValue: "", checkDescendents: false},
    {alias: "订单日期", cacheable: true, cacheableStr: "system", cdValue: "", checkDescendents: false}
]

即数据格式为数据中有多个json数据

前端处理为

JSON.stringify(this.params);

将object数组转会为json形式;

后端接受数据后

//从request获取json数组
JSONArray params = JSONArray.fromString(req.getParameter("params"));
//通过getJSONObject获取JSONArray中的json对象进行操作
System.out.println(params.getJSONObject(0).get("alias"));

你可能感兴趣的:(数据结构)