如何在ASP.NET MVC 5中上传视频并将视频文件从视图传递到方法?

时间:2014-10-18 21:40:05

标签: c# asp.net-mvc

我正在编写一个MVC 5 Web应用程序来更新博客文章。我希望能够让用户将视频上传到内容文件夹,然后将文件名作为字符串存储在数据库中。但是,我似乎错过了一件必不可少的作品。

我有一种方法可以更新除视频部分以外的其他帖子。

public ActionResult Update(int? id, string title, string body, DateTime dateTime, string tags, Video video)
{
    if (!IsAdmin)
    {
        return RedirectToAction("Index");
    }

    var post = GetPost(id); // get the post object

    post.Title = title;
    post.Body = body;
    post.DateTime = dateTime;
    post.Tags.Clear();
    post.VideoFileName = UploadVideo(video);

我为视频创建了一个具有一个属性的类。

public class Video
{
    public HttpPostedFileBase File { get; set; }
}

然后是与Update方法在同一类中的方法,用于上传视频并返回文件名。

[HttpPost]
public string UploadVideo(Video video)
{
    if (video.File.ContentLength <= 0) return null;
    var fileName = Path.GetFileName(video.File.FileName);
    if (fileName == null) return null;
    var path = Path.Combine(Server.MapPath("~/Content/Videos"), fileName);
    video.File.SaveAs(path);

    return fileName;
}

然后我有一个View for Update方法,但我不知道如何将视频对象从此View中导入Update方法,以便我可以将其传递给UploadVideo方法。

<form action="@Href("~/Posts/Update")" method="post" id="postForm">
@if(Model.Id != -1)
{
    <input type="hidden" name="id" value="@Model.Id"/>
}
    @{ var dateTime = Model.DateTime.Year > 2000 ? Model.DateTime : DateTime.Now; }
    <input type="text" name="dateTime" value="@dateTime "/> Date<br />
    <input type="text" name="title" value="@Model.Title " /> Title<br />
    <input type="text" name="tags" value="@ViewBag.Tags " /> Tags<br />
    <textarea name="body" rows="10" cols="80">@Model.Body</textarea><br />
    <br/>
    <br/>
    <input type="file" name="video" />
    <br/>
    <br/>
    <input type="submit" name="submit" value="Submit" />
</form>

使用<input type="file" name="video" />会导致视频对象在传递到Update方法时为null。

如何将视频文件传递给Update方法,并在视图中设置所有其他文本数据,例如dateTimetitletagsbody

2 个答案:

答案 0 :(得分:3)

下面是片段,我只是在这里输入一个想法,你可以理解,如果你需要更多信息,请告诉我

    [HttpPost]
    public ActionResult UploadFile()
    {
           var httpPostedFile = Request.Files[0];
           if (httpPostedFile != null) {

                // Validate the uploaded file if you want like content length(optional)

                // Get the complete file path
                var uploadFilesDir = System.Web.HttpContext.Current.Server.MapPath("~/Content/Videos");
                Directory.CreateDirectory(uploadFilesDir);

                var fileSavePath = Path.Combine(uploadFilesDir, httpPostedFile.FileName);

                // Save the uploaded file to "UploadedFiles" folder
                httpPostedFile.SaveAs(fileSavePath);

            }

            return Content("Uploaded Successfully");
    }

答案 1 :(得分:1)

接受的答案解决了将视频文件从视图中导入方法的问题。我只是发布了我在代码中更改的内容,以防它对任何人有所帮助。

[HttpPost]
public string UploadVideo(HttpFileCollection video)
{
    if (video.Count <= 0) return null;
    var fileName = Path.GetFileName(video.Get(0).FileName);
    var path = Path.Combine(Server.MapPath("~/Content/Videos"), fileName);
    // save video here
    return fileName;
}

[ValidateInput(false)]
public ActionResult Update(int? id, string title, string body, DateTime dateTime, string tags)
{
    if (!IsAdmin)
    {
        return RedirectToAction("Index");
    }

    var post = GetPost(id); // get the post object

    var video = System.Web.HttpContext.Current.Request.Files;

    post.Title = title;
    post.Body = body;
    post.DateTime = dateTime;
    post.Tags.Clear();
    post.VideoFileName = UploadVideo(video);
    // continued, more code
}

public class Video
{
    public HttpFileCollection File { get; set; }
}

我刚刚将enctype属性添加到了视图

中的form
<form action="@Href("~/Posts/Update")" method="post" id="postForm" enctype="multipart/form-data">