加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

.net mvc4 + ajaxfileupload.js 解决IE浏览器中弹出下载对话框问

发布时间:2020-12-16 00:23:35 所属栏目:百科 来源:网络整理
导读:摘要:每个人遇到的问题都不一样,在网上找了一大圈都没有解决到我的问题!因为我的环境如标题所示,解决了这个问题。 主要问题:在于响应头的设置 Controller: [HttpPost] public ContentResult UploadFile(string user = WinTabConst.Space,int type = Co
摘要:每个人遇到的问题都不一样,在网上找了一大圈都没有解决到我的问题!因为我的环境如标题所示,解决了这个问题。
主要问题:在于响应头的设置

Controller:

        [HttpPost]
        public ContentResult UploadFile(string user = WinTabConst.Space,int type = ConfigConst.Zero,string imgType = WinTabConst.Space,int objId = ConfigConst.Zero,DateTime? createDateTime = null)
        {
            HttpPostedFileBase imgFile = Request.Files["imgFile"];

            AttachmentBLL attachmentBll;
            if (!string.IsNullOrEmpty(user))
                attachmentBll = new AttachmentBLL(user);
            else
                attachmentBll = new AttachmentBLL();
            int userId = 0;
            users userModel = attachmentBll.CurUser;
            if (user != null)
                userId = userModel.UserID;
            return Content(JavascriptHelper.JsonSerializer.Serialize(attachmentBll.UploadFile(true,"",imgFile,type,imgType,objId,userId,createDateTime)));
        }


js:
$.ajaxFileUpload(
       {
           url: "/Companies/attachment/UploadFile",data: { "objId": objId,"createDateTime": createDateTime,"dir": "","type": "2","userid": UserID,"user": $.cookie('LoginInfo') },type: "post",secureuri: false,dataType: "text",fileElementId: "imgFile",success: function (data) {
               if (data != null && data == "") {//这个判断是因为当时格式为 json,IE接收到的 data为 "",但是图上又是传成功的问题
                   $(".uploadImg").hide();
                   $(".mask").hide();
               }else if (data != null && data.error == 0) {//我的正确执行的方法
                   $(".uploadImg").hide();
                   $(".mask").hide();
               } else {
                   AlertAlert("上传失败!");
               }
           },error: function (e) {
               $.messager.alert("提示","操作出现错误!");
           }
       }
   );

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读