ajaxfileupload unexpected token

前端之家收集整理的这篇文章主要介绍了ajaxfileupload unexpected token前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

将spring mvc 配置文件

<beanclass="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
<propertyname="messageConverters">
<list>
<beanclass="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter"/>
</list>
</property>
</bean>

改为

<beanclass="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
<propertyname="messageConverters">
<list>
<beanclass="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
<propertyname="supportedMediaTypes">
<list>
<value>text/html;charset=UTF-8</value>
</list>
</property>
</bean>
</list>
</property>
</bean>
原文链接:https://www.f2er.com/ajax/163769.html

猜你在找的Ajax相关文章