0

我在 asp.net mvc 3 中使用 Valums 上传器插件进行文件上传。以下是在表单中具有表单字段和 ajax 查询上传按钮的视图。我不确定我做对与否。我必须在视图上进行更改,以便当我选择要上传表单字段的文件时,也会发送该值。

意见:

<link href="@Url.Content("~/Content/css/fileuploader.css")" rel="stylesheet" type="text/css" />
<script src="@Url.Content("~/Content/js/fileuploader.js")" type="text/javascript"></script>


@using (Html.BeginForm("Upload","AjaxUpload")) {
    @Html.ValidationSummary(true)
    <fieldset>
        <legend>Upload Image File</legend>
         <div class="editor-label">
           @Html.Label("Select Language")
        </div>
        <div>

          @Html.DropDownList("Language1", (SelectList) ViewBag.lang)
      </div>
         <div class="editor-label">
           @Html.Label("Select Category")
        </div>


      <div>
          @Html.DropDownList("ParentCategoryID", ViewBag.ParentCategoryID as SelectList) 
      </div>

      <div id="file-uploader">
    <noscript>
        <p>
            Please enable JavaScript to use file uploader.</p>
    </noscript>
</div>
    </fieldset>
}


**<script type="text/javascript">
    var uploader = new qq.FileUploader
    ({
        element: document.getElementById('file-uploader'),
        action: '@Url.Action("upload")', // put here a path to your page to handle uploading
        allowedExtensions: ['jpg', 'jpeg', 'png', 'gif'], // user this if you want to upload only pictures
        sizeLimit: 4000000, // max size, about 4MB
        minSizeLimit: 0 // min size
    });
</script>**

如何将表单的值传递给 HTTPOST Action 的控制器,以便将数据保存到数据库。在这里,我有上传操作将数据保存在数据库中,但我不知道要检索到通过表单发送的那些值。

HttpPost 动作

  [HttpPost]
        public ActionResult Upload(HttpPostedFileBase qqfile)
        {
            var wav = new PlayWav
            {
                Name = ***filename***,
                CategoryID = ***value from category dropdown select list***,
                UserID = repository.GetUserID(HttpContext.User.Identity.Name),
                LanguageID = int.Parse(***value from language dropdown select list***),
                UploadDateTime = DateTime.Now,
                ActiveDateTime = DateTime.Now,
                FilePath = "n/a"
            };



            if (qqfile != null)
            {
                // this works for IE
                var filename = Path.Combine(Server.MapPath("~/App_Data/Uploads"), Path.GetFileName(qqfile.FileName));
                qqfile.SaveAs(filename);



                return Json(new { success = true }, "text/html");
            }
            else
            {
                // this works for Firefox, Chrome
                var filename = Request["qqfile"];
                if (!string.IsNullOrEmpty(filename))
                {
                    filename = Path.Combine(Server.MapPath("~/App_Data/Uploads"), Path.GetFileName(filename));
                    using (var output = System.IO.File.Create(filename))
                    {
                        Request.InputStream.CopyTo(output);
                    }

                    **db.PlayWavs.Attach(wav);
                    db.SaveChanges();**

                    return Json(new { success = true });
                }
            }
            return Json(new { success = false });
        }
4

1 回答 1

1

您没有阅读文档吗?有一整节题为Sending additional params。甚至给出了一个例子:

var uploader = new qq.FileUploader({
    element: document.getElementById('file-uploader'),
    action: '/server-side.upload',
    // additional data to send, name-value pairs
    params: {
        param1: 'value1',
        param2: 'value2'
    }
});
于 2012-07-18T10:20:34.650 回答