我们有一个非常简单的文件输入表单。当我们发布表单时,我们可以处理模型中的其他元素。但是文件输入总是返回null。顺便说一下,我们在Telerik Sitefinity中使用视图和控制器作为自定义控件。这可能与我们找不到解决办法有关。
视图代码
@using (Html.BeginForm("Index", null, FormMethod.Post, new { enctype = "multipart/form-data" }))
{
@Html.ValidationSummary(true)
<div class="form">
<dl>
<dd>
@Html.LabelFor(model => model.ShareRecipe.Name)
@Html.EditorFor(model => model.ShareRecipe.Name)
</dd>
<dd>
@Html.LabelFor(model => model.ShareRecipe.EmailAddress)
@Html.EditorFor(model => model.ShareRecipe.EmailAddress)
</dd>
<dd>
@Html.LabelFor(model => model.ShareRecipe.RecipeArea)
@Html.EditorFor(model => model.ShareRecipe.RecipeArea)
</dd>
<dd>
<input type="file" name="fileUpload" id="fileUpload" />
</dd>
<dd class="last">
<input type="submit" class="btn btn-danger" onclick="return ValidateForm();" value="Send" /></dd>
</dl>
</div>
}
这是我们的控制器。
[HttpPost]
public ActionResult Index(ShareRecipeModel model, HttpPostedFileBase fileUpload, FormCollection values)
{
if (fileUpload != null && fileUpload.ContentLength > 0)
{
var fileName = Path.GetFileName(fileUpload.FileName);
var path = Path.Combine(Server.MapPath("~/img/"), fileName);
fileUpload.SaveAs(path);
model.ImageUrl = fileName;
}
}
我们也尝试使用基本表单标签发布。如:
<form method="post" enctype="multipart/form-data"></form>
它不工作。也是在Html中。我们尝试了所有的变量索引和控制器名称,如:
null,null
"Index","ShareRecipeController"
等。
最后,我想给出关于在Telerik Sitefinity中使用自定义控件的信息控制器上有这一行:
[ControllerToolboxItem(Name = "ShareRecipe", Title = "Share Your Recipe", SectionName = "MvcWidgets")]
public class ShareRecipeController : BaseController
如果有人有任何想法,这对我们来说是很好的,提前感谢,Serhad .
在我们的表单标签中,我们有必要的元素是"FormMethod "。Post, new {enctype = "multipart/form-data"}"但是由于网站结构的原因,当我们在页面中使用自定义控件作为自定义用户控件时。它去到那个页面的相关主页。母版页中的表单标签会影响自定义控件中的表单标签。
要避免此问题,请在母版页标签中添加"method="post" enctype="multipart/form-data"属性,而不是添加自定义控件视图。
裁判:http://www.sitefinity.com/developer-network/forums/bugs-issues-/upload-file-with-mvc