【发布时间】:2017-03-23 18:00:15
【问题描述】:
如何在一个表单中使用我的两个控制器 Action?
我想不出在BeginForm() 中执行两个控制器操作的方法。
我对我的项目有这样的看法:
@using (Html.BeginForm()){
@Html.AntiForgeryToken()
<div class="form-horizontal">
<h4>T_Categorie</h4>
<hr />
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
<div class="form-group">
@Html.LabelFor(model => model.CatName, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.CatName, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.CatName, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(model => model.CatDesc, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.CatDesc, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.CatDesc, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
<div class="col-md-10">
<label class="control-label col-md-2">Upload an image</label>
<input type="file" name="image" runat="server" style="width: 100%;" />
</div>
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</div>
</div>}
这是我在 T_CategorieController 中的类别创建 ActionLink
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create([Bind(Include = "CatName,CatDesc")] T_Categorie t_Categorie)
{
if (ModelState.IsValid)
{
db.T_Categorie.Add(t_Categorie);
db.SaveChanges();
return RedirectToAction("Index");
}
return View(t_Categorie);
}
这是我在 T_Images 控制器中的文件上传器
[HttpPost]
public ActionResult FileUpload(HttpPostedFileBase image, T_Categorie CurrentCat)
{
if (image != null)
{
if (image.ContentLength > 0)
{
byte[] imageData = null;
using (var binaryReader = new BinaryReader(image.InputStream))
{
imageData = binaryReader.ReadBytes(image.ContentLength);
}
try
{
//Upload to database
T_Images newImage = new T_Images { ImgData = imageData };
db.T_Images.Add(newImage);
db.SaveChanges();
//Change the currentCat fk_ImgId
var CurrentImageDB = db.T_Images.OrderByDescending(t => t.ImgId).First();
var currentRefCat = db.T_Categorie.Find(CurrentCat.CatId);
//
currentRefCat.fk_ImgID = CurrentImageDB.ImgId;
db.SaveChanges();
}
catch (System.Data.SqlClient.SqlException)
{
throw new FileLoadException();
}
}
}
return RedirectToAction("Index", "Home");
}
【问题讨论】:
-
所以你想让你的表单调用 Create 然后调用 FileUpload?如果是这样,你不能。一个表单只能有一个选项。更改您的控制器以在文件上传操作中读取表单数据。
-
我可以为 Create ActionLink 设置多个参数,以便我可以从那里引用我的图像吗?
-
将隐藏字段添加到您的表单并在您的操作中阅读它们。在这里,这将有助于stackoverflow.com/questions/5149116/…
-
嘿,谢谢你,我成功了!我会张贴我的遮阳篷!
标签: c# asp.net-mvc file-upload html.beginform