zoukankan      html  css  js  c++  java
  • Mvc3文件(或图片)上传

     public JsonResult AddProDoc(ProjectDoc doc)
            {
                try
                {
    ///文件
                    HttpPostedFileBase file = Request.Files["File"];
    ///图片
                    //WebImage image = WebImage.GetImageFromRequest("");
                    if (file != null)
                    {
                        var filename = Path.GetFileName(file.FileName);
                        var fileExtension = filename.Substring(filename.LastIndexOf("."));
                        var buildName = DateTime.Now.ToString("yyyyMMddhhmmss") + fileExtension;
                        var savepath = Path.Combine(Server.MapPath("~/Content/Upload/Prodocuments"), buildName);
                        file.SaveAs(savepath);
    //image.Save((savepath, forceCorrectExtension: false));
                                           return Json(new { success = true, Message = "文档添加成功!" }, "text/html", JsonRequestBehavior.AllowGet);
                    }
                    return Json(new { success = false, Message = "您没有上传任何文档!" }, "text/html", JsonRequestBehavior.AllowGet);
                }
                catch (Exception e)
                {
                    return Json(new { success = false, Message = "文档添加失败!" }, "text/html", JsonRequestBehavior.AllowGet);
                }
            }

    前提是要在页面上设置enctype="multipart/form-data",否则会报错

  • 相关阅读:
    同步请求和异步请求的区别
    Ajax初步理解
    ajax的GET和POST请求
    What's this?(js)
    rxjs
    Angular7_获取异步方法里面的数据
    Angular7_人员登记系统
    Angular7
    特殊操作符
    Oracle 表操作
  • 原文地址:https://www.cnblogs.com/a546558309/p/2593511.html
Copyright © 2011-2022 走看看