代码改变世界

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

2015-05-06 15:14  立雪三尺  阅读(321)  评论(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");

 

 

 

View Code