ajax在IE下json下載避免解決方案 springmvc
阿新 • • 發佈:2019-02-04
<!-- 返回json 方法一 需要匯入 fastjson.jar包 -->
注意,請匯入最新版本的,低於1.2.28的版本有bug,有遠端惡意注入漏洞。
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.28</version>
</dependency>
然後在springmvc中注入fastJsonHttpMessageConverter類解析轉換。
<mvc:message-converters register-defaults="false">
<!-- 避免IE執行AJAX時,返回JSON出現下載檔案 -->
<bean id="fastJsonHttpMessageConverter"
class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<!-- 這裡順序不能反,一定先寫text/html,不然ie下出現下載提示 -->
<value>text/html;charset=UTF-8</value>
<value>application/json;charset=UTF-8</value>
</list>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>