Mvc 4动态表单文件上传
本文关键字:文件 表单 动态 Mvc | 更新日期: 2023-09-27 18:03:38
我正在建立一个网站,用户可以填写从数据库动态生成的多页表单。我使用JQuery将数据发送到控制器并返回表单的下一页。
问题是得到文件被张贴到我的控制器,我使用的HtmlHelpers从这篇文章生成的html文件字段。
我的模型:
public class QuestionPage
{
public const string Next = "next";
public const string Prev = "prev";
public const string Save = "save";
public int currentID { get; set; }
public bool advanced { get; set; }
public QuestionPageItem[] questions { get; set; }
public int pagenumber { get; set; }
public int? next { get; set; }
public int? prev { get; set; }
public string submitaction { get; set; }
public int? gotoID { get; set; }
public Dictionary<Int32, QuestionPageTitle> titles { get; set; }
}
public class QuestionPageItem
{
public int id { get; set; }
public string question { get; set; }
public string description { get; set; }
public bool required { get; set; }
public QuestionType type { get; set; }
public object answer { get; set; }
public int? enableID { get; set; }
public bool initHidden { get; set; }
public QuestionOptionIndexModel[] options { get; set; }
}
静态视图:
using (Html.BeginForm("Form", "QuestionPage", new { id = Model }, FormMethod.Post, new { id = "frm" + Model, name = Model, enctype = "multipart/form-data" }))
{
<div id="formcontainer">
@Html.Partial("_FormPartial", Model)
</div>
}
我的部分视图(_FormPartial)被jQuery ajax取代,简化:
@model DPDF.Models.QuestionPage
Some hidden fields...
@for (int i = 0; i < Model.questions.Length; i++)
{
var question = Model.questions[i];
Some hidden fields...
<tr class="@(question.initHidden ? "hidden" : "")" id="@(question.id)" >
show textbox or textarea or radio etc depending on question type, for instance
@Html.TextBox("questions[" + i + "].answer", (question.answer == null ? string.Empty : question.answer.ToString()))
in case of file field
@Html.FileBox("questions[" + i + "].answer")
</tr>
}
数据被绑定到question对象中的answer字段。我的控制器动作:
[AllowAnonymous]
public ActionResult Form(QuestionPage model)
{
if (!ModelState.IsValid)
return View(model);
// this is to make some hidden fields get the correct new values
ModelState.Clear();
// do stuff to determine what page to show next...
// save data, extract value from model.answer object depending on question type
// make new model and return it
if (Request.IsAjaxRequest())
return PartialView("_FormPartial", model);
return View(model);
}
文本框等普通字段返回String[]{"test"},文件字段返回null。
编辑:也许问题出在javascript上?这是发送到服务器的代码:
var $form = $(form);
var $container = $('#formcontainer');
$container.hide('slide', { direction: direction }, 500, function () {
$.ajax({
url: $form.attr('action'),
type: $form.attr('method'),
data: $form.serialize(),
success: function (data, textStatus, jqXHR) {
$container.html(data);
updateOverzicht();
$container.show('slide', { direction: (direction == 'left') ? 'right' : 'left' }, 500);
}
});
});
将QuestionPageItem
类中answer
的类型更改为HttpPostedFiledBase
而不是 object
:
public HttpPostedFileBase answer { get; set; }
实际上:他真正的问题是因为他试图将他的表单作为jQuery Ajax请求的一部分提交。
正如mattytommo所提到的,这样上传文件是不可能的。
我想我会使用一个JQuery插件来上传文件,而不发布它。
我感谢mattytommo的帮助。
我不确定我是否应该把他的答案标记为正确,因为这个问题在评论中已经解决了。
文件字段必须有索引,否则无法上传到服务器
<input type="file" name="Document_Path[0]" class="form-control" />
<input type="file" name="Document_Path[1]" class="form-control" />
<input type="file" name="Document_Path[2]" class="form-control" />