Heim  >  Fragen und Antworten  >  Hauptteil

javascript - ajax参数传递到后台,对象里面包含对象和list集合

前台需要将一个实体信息包含一个数组对象传到后台,怎么做?
{

id:1,
name:'小明',
age:20,
address:[{
            name:'贵州',
            areaCode:'564432'
        },
        {
            name:'西安',
            areaCode:'512344'
        }],
 student:{
             name:'xxx',
             date:'2010-2-1'
         }

}
前台的数据就是这样;
传递的实体里面包含对象数组和一个对象;
后台使用springMVC 怎么进行接收和处理;
ajax要怎么处理,怎么配置才行?
求解。。。。

PHPzPHPz2771 Tage vor732

Antworte allen(2)Ich werde antworten

  • 阿神

    阿神2017-04-11 09:14:38

    中间传输可以都用 json 字符串,前后端自行 encode 和 decode

    Antwort
    0
  • 阿神

    阿神2017-04-11 09:14:38

    直接发起json格式的请求,springMVC写一个对应的类(如下的BillForm)去自动接收。

    @RequestMapping(value="createBill", method=RequestMethod.POST)
    @ResponseBody  
        public ResultForm createBill(@RequestBody BillForm billForm, HttpServletRequest request) {
            ...
        }

    Antwort
    0
  • StornierenAntwort