码迷,mamicode.com
首页 > Web开发 > 详细

IE下AjaxForm上传文件直接提示下载的兼容性Bug

时间:2015-05-06 16:58:07      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

使用AjaxForm上传文件时候,在IE下直接提示下载保存:

技术分享

我的示例代码:

   return this.Json(
            new
                {
                    prop1 = 5,
                    prop2 = 10
                });

 这种问题只出现在IE下,是由于AjaxFrom只接受以Html格式返回的Json,所以需要在返回的json对象里设置content:

   return this.Json(
            new
                {
                    prop1 = 5,
                    prop2 = 10
                }, 
            "text/html");

 

 

 

IE下AjaxForm上传文件直接提示下载的兼容性Bug

标签:

原文地址:http://www.cnblogs.com/songsz1/p/4482116.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!