博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring mvc ajax 提交复杂数组类型
阅读量:4949 次
发布时间:2019-06-11

本文共 2018 字,大约阅读时间需要 6 分钟。

The server refused this request because the request entity is in a format not supported by the requested resource for the requested method

1、Spring Mvc 配置

text/html; charset=utf-8
application/json; charset=utf-8

引用 jackson jar包:jackson-annotations-2.1.1.jar、jackson-core-2.1.1.jar、jackson-databind-2.1.1.jar。

2、Controller代码

package com.test.controller;import org.springframework.stereotype.Controller;import org.springframework.stereotype.Repository;import org.springframework.web.bind.annotation.RequestBody;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.bind.annotation.ResponseBody;import javax.servlet.http.HttpServletRequest;import java.util.ArrayList;import java.util.List;/** * Created by Administrator on 2015/2/28. */@Controller@RequestMapping("/report")public class ReportTypeController extends BaseController {    @RequestMapping("/set")    @ResponseBody    public String set(@RequestBody List
settingBeans,HttpServletRequest request){
return ""; }}

3、ajax请求:

var userList= new Array();            userList.push({id:1,name:"zhangsan"});            userList.push({id:2,name:"lisi"});            $.ajax({                url: "/report/set",                type:"post",                data:JSON.stringify(userList),                dataType:"json",                contentType:"application/json",                success:function(data){                },error:function(data){                }            });

 

转载于:https://www.cnblogs.com/zhujiabin/p/4968824.html

你可能感兴趣的文章
Code of Conduct by jsFoundation
查看>>
div 只显示两行超出部分隐藏
查看>>
C#小练习ⅲ
查看>>
debounce、throttle、requestAnimationFrame
查看>>
linux下的C语言快速学习—进程和文件
查看>>
电源防反接保护电路
查看>>
stm32 堆和栈(stm32 Heap & Stack)
查看>>
SpringMVC从入门到精通之第三章
查看>>
JS基础-dom操作
查看>>
【转】Android详细的对话框AlertDialog.Builder使用方法
查看>>
Unite Beijing 2015大型活动
查看>>
loading加载的代码
查看>>
PHP框架CI CodeIgniter 的log_message开启日志记录方法
查看>>
arraylist
查看>>
关于poi导出excel三种方式HSSFWorkbook,SXSSFWorkbook,csv的总结
查看>>
zoj 1649 Rescue (BFS)(转载)
查看>>
371. Sum of Two Integers java solutions
查看>>
2124: 等差子序列 - BZOJ
查看>>
3529: [Sdoi2014]数表 - BZOJ
查看>>
自我介绍
查看>>