jquery的ajaxForm在IE上传文件后返回json显示"文件下载"问题

简单地将返回的contentType改为text/html就行了。

如果用的struts2,就类似如下配置:

<action name="saveInfo" class="someAction"
    method="saveInfo">
    <result type="json">
        <param name="root">mapInfo</param>
        <param name="contentType">text/html</param>
    </result>
</action>

你可能感兴趣的:(jquery的ajaxForm在IE上传文件后返回json显示"文件下载"问题)