SpringMVC
文章平均质量分 52
Quan7er
这个作者很懒,什么都没留下…
展开
-
IE10以下的IE浏览器在form表单提交、a标签等场景下,接收application/json类型的响应时,会提示是否要下载该json文件...
[size=large][b]IE10以下的IE浏览器在form表单提交、a标签等场景下,接收application/json类型的响应时,会提示是否要下载该json文件?[/b] IE10以下的IE浏览器并不支持application/json这种response格式,所以需要在服务端先将对象转成json字符串然后,设置Content-Type为text/html的类型,再返回,就行了...原创 2016-10-13 15:35:25 · 216 阅读 · 0 评论 -
SpringMVC如何接收application/json内容编码类型的参数?
[size=medium] [color=darkred]在上代码之前,有必要先说说@ResquestBody注解的含义:[/color] 1、官方解释如下: Annotation indicating a method parameter should be bound to the body of the web request. The body of the request...原创 2016-10-13 15:35:27 · 332 阅读 · 0 评论