首页 > 代码库 > You're trying to decode an invalid JSON String JSON返回有解析问题
You're trying to decode an invalid JSON String JSON返回有解析问题
SpringMVC架构的web程序,通常用map返回消息在浏览器中显示,但是实际中报下列错误
“”You‘re trying to decode an invalid JSON String“
返回的字符串的被加入了<pre></pre>,
解决方法,在springMvc的配置文件中加入以下配置:
<bean
class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
<list>
<bean
class="org.springframework.http.converter.ByteArrayHttpMessageConverter" />
<bean id="jsonHttpMessageConverter"
class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value>text/plain;charset=UTF-8</value>
</list>
</property>
</bean>
</list>
</property>
</bean>
同时,在Controller方法体上加入@ResponseBody注解。
另外还有一种解决方法是返回数组形式的消息,如:
resultText =
"{success:true,info:‘成功‘}"
;
You're trying to decode an invalid JSON String JSON返回有解析问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。