在springmvc中使用ajax发现报了406错误,查了一下:
如下
the resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request “accept” headers
大概意思就是说响应头不一样,也是springmvc返回的html数据,然后我们网页端接收的是Application/json,所以需要springmvc将返回的数据进行json化处理
而且我的controller是能够获取到值的,更加说明了返回的时候出现问题
所以我们需要引入相关包,让springmvc自动处理即可
如果使用的是maven
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.4.1.1</version>
</dependency>
如果上面还不行,请再加一个jackson-annotions的包
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.4.1.1</version>
</dependency>
其实我觉得只要是个能够解析json的包应该都可以,包括不仅限于这几个。未测试