欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP.NET MVC5实现文件上传与地址变化处理(5)

程序员文章站 2024-02-17 09:57:52
一.上传文件和重复文件处理 文件处理的原则是:不在数据库中保存文件,只在数据库中保存文件信息(hash值等)。采取文件的md5重命名文件在一般情况足够处理文件的重复问题,...

一.上传文件和重复文件处理
文件处理的原则是:不在数据库中保存文件,只在数据库中保存文件信息(hash值等)。采取文件的md5重命名文件在一般情况足够处理文件的重复问题,强迫症倾向则可以考虑将md5和其他摘要算法结合。

public static string save(httppostedfilebase file, string path)
    {
      var root = "~/upload/" + path + "/";
      var phicypath = hostingenvironment.mappath(root);
      directory.createdirectory(phicypath);
      var filename = md5(file.inputstream) + file.filename.substring(file.filename.lastindexof('.'));
      file.saveas(phicypath + filename);
      return filename;
    }


二.单独文件上传
网站logo、分类图标等各种场景需要单独文件上传的处理。通过使用uihintattribute或自定义继承自uihintattribute的特性我们将文件上传的前端逻辑的重复代码消灭,使用统一的视图文件处理。曾经使用过uplodify和ajaxfileuploader,前者存在flash依赖和cookie问题,后者基本已经过时。此处我们采用kindeditor中的文件上传组件作为演示。非flash的支持ie6+的方案的核心都是通过iframe方式实现伪ajax上传,核心还是通过html form post到服务器。

  public class uploadmodel
  {
    [display(name = "图标")]
    [uihint("upload")]
    public string image { get; set; }

    [display(name = "简单模式")]
    [uihint("editor")]
    [additionalmetadata("usesimple", true)]
    public string text1 { get; set; }

    [display(name = "标准模式")]
    [uihint("editor")]
    public string text2 { get; set; }
  }


在我们的实际项目中采取继承uihintattribute的方式,其中的path路径指定存储的下级地址,类似的还有dropdownattribute、editoratrribute等等。仅供参考。

  [attributeusage(attributetargets.property)]
  public class uploadattribute : uihintattribute, imetadataaware
  {
    public string path { get; private set; }

    public uploadattribute(string path = "")
      : base("upload")
    {
      this.path = path;
    }

    public virtual void onmetadatacreated(modelmetadata metadata)
    {
      metadata.additionalvalues.add("path", this.path);
    }
  }

razor:在shared中添加editortemplates文件夹,新建upload.cshtml文件。

<script>
  kindeditor.ready(function (k) {
    var editor = k.editor({
      allowfilemanager: false,
      allowimageupload: true,
      formatuploadurl: false,
      uploadjson: '@url',
    });
    k('#btn_@id').click(function () {
      editor.loadplugin('insertfile', function () {
        editor.plugin.filedialog({
          fileurl: k('#@id').val(),
          clickfn: function (url, title) {
            k('#@id').val(url);
            $('#image_@id').attr('src', url);
            editor.hidedialog();
          }
        });
      });
    });
  });
  $('#rest_@id').click(function () {
    $('#@id').attr('value', '');
    $('#image_@id').attr('src', '@url.content("~/images/default.png")');
  });
</script>

三.编辑器中的文件上传
编辑器中的文件上传和单独文件上传的主要区别是上传后返回值的处理,编辑器需要将url插入到编辑的位置。编辑器采用过ckeditor和umeditor,两者都需要我改源代码才能处理路径问题。上传地址和返回值的配置如果不能方便的视图中调整的编辑器,我个人不认为是好编辑器,这就好比一个类库没法扩展和自定义配置一样。仍然采用kindeditor作为演示。editor.cshtml的

<script type="text/javascript">
  var editor;
  kindeditor.ready(function (k) {
    editor = k.create('textarea[name="@html.idformodel()"]', {
      resizetype: 1,
      allowpreviewemoticons: false,
      allowimageupload: true,
      uploadjson: '@uploadmanager.uploadurl',
      formatuploadurl: false,
      allowfilemanager: false
      @if(usesimple)
      {
        <text>, items: [
            'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
            'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
            'insertunorderedlist', '|', 'emoticons', 'image', 'link']
        </text>
      }
    });
  });
</script>

四.处理文章中的图片路径
重头戏来了,这个看似问题可以回避,其实真的无法回避。更换目录、域名和端口,使用子域名或其他域名作为图片服务器等等,这些情况让我们必须处理好这个问题,否则日后会浪费更多的时间。这不是小问题,打开支持插入图片的各个网站的编辑器,查看一下图片的路径,大多是绝对url的,又或者只基于根目录的。如果你以产品的形式提供给客户,更不可能要求客户自己挨个替换文章中的路径了。

1.在数据库中不存储文件路径,使用url路径作为存储。

2.使用html base元素解决相对路径的引用问题。

就是base元素,可能有的人认为这个base可有可无,但在处理图片路径的问题上,没有比base更简洁更优雅的方案了。至少我没有也没找到过。其实可以把全部的静态资源都移除到外部存储,如果你需要。在测试时,我们切换回使用本地存储。

@{
  var baseurl = uploadmanager.urlprefix;
}
<!doctype html>
<html>
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />

  <title>@viewbag.title</title>
  <base href="@baseurl" />
  
  <script src="~/scripts/jquery-1.11.2.min.js"></script>
  @rendersection("head",false)
</head>
<body>
  @renderbody()
</body>
</html>

五.处理上传地址的变化
我们需要独立的图片服务器处理上传或者使用第三方的图片存储服务时,我们的上传地址改变了,如果刚刚提到的图片路径一样,因此我们将上传路径和图片路径都采取配置的方式方便更改,我们就曾经切换到又拍云又切换到自有的服务器。在我的实际使用时配置在数据中使用时采用缓存。为了便于演示我们直接使用配置文件。

首先定义配置文件的处理程序

  public class uploadconfig : iconfigurationsectionhandler
  {
    public object create(object parent, object configcontext, system.xml.xmlnode section)
    {
      var config = new uploadconfig();
      var urloadurlnode = section.selectsinglenode("uploadurl");
      if (urloadurlnode != null && urloadurlnode.attributes != null && urloadurlnode.attributes["href"] != null)
      {
        config.uploadurl = convert.tostring(urloadurlnode.attributes["href"].value);
      }

      var urlprefixnode = section.selectsinglenode("urlprefix");
      if (urlprefixnode != null && urlprefixnode.attributes != null && urlprefixnode.attributes["href"] != null)
      {
        config.urlprefix = convert.tostring(urlprefixnode.attributes["href"].value);
      }

      return config;
    }

    public string uploadurl { get; private set; }

    public string urlprefix { get; private set; }
  }


在web.config中配置

 <configsections>
  <section name="uploadconfig" type="simplefilemanager.uploadconfig, simplefilemanager" requirepermission="false" />
 </configsections>
 <uploadconfig>
  <uploadurl href="~/file/upload/" />
  <urlprefix href="~/upload/" />
 </uploadconfig>

使用uploadmange缓存和管理配置

  public static class uploadmanager
  {
    private static string uploadurl;
    private static string urlprefix;

    static uploadmanager()
    {
      var config = configurationmanager.getsection("uploadconfig") as uploadconfig;
      var url = config != null && !string.isnullorempty(config.uploadurl) ? config.uploadurl : "~/file/upload";
      uploadurl = url.startswith("~") ? uploadhelper.geturlfromvisualpath(url) : url;
      var prefix = config != null && !string.isnullorempty(config.urlprefix) ? config.urlprefix : "~/upload";
      urlprefix = prefix.startswith("~") ? uploadhelper.geturlfromvisualpath(prefix) : prefix;
    }

    public static string uploadurl
    {
      get
      {
        return uploadurl;
      }
    }

    public static string urlprefix
    {
      get
      {
        return urlprefix;
      }
    }
  }

文件hash的md5、返回值的json处理、完整url的生成和文件的保存这些具体技术的依赖为了便于演示,统一放置在uploadhelper中,因为这些不是重点。实际应用中可以采取接口隔离并通过ioc注入的方式解耦。

ASP.NET MVC5实现文件上传与地址变化处理(5)

以上就是asp.net mvc5如何实现文件上传与地址变化处理的全部过程,希望对大家的学习有所帮助。