2

我想在我的网站https://github.com/blueimp/jQuery-File-Upload上使用这个 jQuery 文件上传,根据文档,我需要创建自己的文件上传处理程序,我想知道是否有人有在 webmatrix 网站中使用 jQuery 文件上传有什么经验吗?

而且,我找不到创建自己的文件上传处理程序所需的信息。如果有人可以提供帮助,那就太棒了。

4

2 回答 2

1

我可以帮助你,我为我创建的网站创建一个文件(图像)上传器。

CSHTML 部分 (sub_archivos.cshtml):

@{
    if (IsPost)
    {
        var fileName = Path.GetFileName(Request.Files["archivo"].FileName);
        var fileSavePath = Server.MapPath("~/Temp/" + fileName);
        try
        {
            Request.Files["archivo"].SaveAs(fileSavePath);

            <img src="~/Temp/@fileName" /> @*you could comment this line...it was the succesful response...an image preview*@

        }
        catch (Exception)
        {
            <text>Error en la subida del archivo</text> @*you could comment this line...error in the uploading*@
        }
    }
}

JQUERY/JAVASCRIPT 部分:

function sube(archivo) {
  var primer_archivo = archivo.files[0];
  var data = new FormData();
  data.append('archivo', primer_archivo);
  $.ajax({
    url: "@Href("../../operaciones/sube_archivos.cshtml")",
    type: "POST",
    contentType: false,
    data: data,
    processData: false,
    cache: false,
    success: function (response) {

      //here I put the response ....the image preview or the error message
      $(archivo).parent().next('.imagen_cargada').html(response);

      //here I get the file name and I add it to some specific div
      $(archivo).parent().next().next('.nombre_imagen').val($(archivo).val().split('\\').pop());
    }
  });
}

HTML部分:

    <form method="post" enctype="multipart/form-data">
      <input type="file" name="archivo" onchange="sube(this)" />
    </form>

祝你好运,如果有什么不清楚的地方告诉我。

于 2013-04-19T13:15:13.823 回答
0

Blueimp 是一个痛苦的插件......我建议你使用这个插件来上传表单和文件。它的配置更简单,而且非常灵活。blueimp 的问题不仅仅是让插件准备好使用。在 asp.net mvc 和 asp.net webmatrix 上的服务器端也很痛苦。

于 2013-05-26T12:49:55.507 回答