zoukankan      html  css  js  c++  java
  • 获取token之后,再调用匿名方法

    js获取token
    
    
    bpm.api.beginDownload = function (filePath, fileName) {
        var url = "/Home/GetToken";
        $$.getJSON(url, {}, function (data) {
            if (data.IsSuc) {
                var url = "/Home/Download?dirRelativePath=" + filePath + "&token=" + data.Token + "&fileName=" + fileName;
                window.location = url;
                //window.open(url, "_blank");
            }
        });
    }
     public static Hashtable htTokens = Hashtable.Synchronized(new Hashtable());
            public ActionResult GetToken()
            {
                var token = Guid.NewGuid();
                htTokens.Add(token, Tool.GetCurrentUser());
                return Json(new { IsSuc = true, Token = token.ToString() }, JsonRequestBehavior.AllowGet);
            }
            /// <summary>
            /// 暂时无用
            /// </summary>
            /// <param name="dirRelativePath"></param>
            /// <param name="fileName"></param>
            /// <returns></returns>
            [AllowAnonymous]
            public ActionResult OldDownload(string dirRelativePath, string fileName)
            {
                string token = Request.QueryString["token"];
                if (htTokens != null && !string.IsNullOrEmpty(token) && htTokens.Contains(Guid.Parse(token)))
                {
                    string uploadPath = System.Configuration.ConfigurationManager.AppSettings["BPMAttachments"];
                    string dirAbsolutePath = uploadPath + dirRelativePath;
    
                    if (!System.IO.File.Exists(dirAbsolutePath))
                    {
                        return Content("提示:文件在磁盘上不存在");
                    }
                    htTokens.Remove(token);
                    //HttpContext.Response.AddHeader("content-disposition", "attachment;filename=" + fileName);
                    //return File(dirAbsolutePath, "application/octet-stream");
                    var contentType = MimeMapping.GetMimeMapping(fileName);
                    HttpContext.Response.AddHeader("content-disposition", "inline;filename=" + fileName);
                    return File(dirAbsolutePath, contentType);
                }
                else
                {
                    return Content("提示:没有权限");
                }
            }
  • 相关阅读:
    逆元模板
    同余方程
    计算系数
    Mayan游戏
    【分治】聪明的质检员(二分)
    瑞士轮(归并排序)
    极值问题
    传纸条
    2014-2015-1学期学习计划
    桌面综合实训答辩验收详情
  • 原文地址:https://www.cnblogs.com/xuguanghui/p/5984509.html
Copyright © 2011-2022 走看看