我有一个模型页面,我想发送给带有附加文件的控制器(文件不在模型中)。到目前为止,我提交的一切都还可以,但由于我正在部分地进行,我想将模型和文件发送到控制器并保持在同一页面上。如果上传成功,我也想得到对页面的响应,所以我可以处理表单元素。这就是我所拥有的:
查看
@model Test.Controllers.HomeController.MyClass
@{
ViewBag.Title = "Index";
}
@using (Html.BeginForm("Save", "Home", FormMethod.Post, new { role = "form", enctype = "multipart/form-data" }))
{
@Html.AntiForgeryToken()
@Html.TextBoxFor(m=>m.Number)
<input id="file" name="file" type="file" multiple>
<button class="btn btn-primary center-block" id="saveButton">
Save <span class="glyphicon glyphicon-ok" style="color: white;" type="submit"></span>
</button>
}
控制器
// GET: Home
public ActionResult Index()
{
return View();
}
[HttpPost]
[ValidateAntiForgeryToken]
public virtual JsonResult Save (MyClass model, List<HttpPostedFileBase> file)
{
return Json(true);
}
public class MyClass
{
public int Number { get; set; }
}
我希望在保存完成后获得响应(Json或其他),以便我可以重新加载一些数据网格等。如果我尝试使用ajax(form.serialize)发送表单,我的文件始终为null。任何帮助表示赞赏
答案 0 :(得分:2)
控制器代码:
public class EditorController : Controller
{
public ActionResult Index()
{
return View();
}
[HttpPost]
public virtual JsonResult Save(MyClass model)
{
var fileName = Request.Files[0].FileName;
using (var memoryStream = new MemoryStream())
{
Request.Files[0].InputStream.CopyTo(memoryStream);
var fileContent = memoryStream.ToArray();
}
return Json(true);
}
}
班级代码:
namespace _12_12_2015.Models
{
public class MyClass
{
public int Number { get; set; }
}
}
查看代码:
@using _12_12_2015.Models
@model MyClass
@{
ViewBag.Title = "Index";
}
@using (Html.BeginForm("Save", "Editor", FormMethod.Post, new { role = "form", enctype = "multipart/form-data"}))
{
@Html.TextBoxFor(m => m.Number)
<input id="file" name="file" type="file" multiple>
<button class="btn btn-primary center-block" id="saveButton">
Save <span class="glyphicon glyphicon-ok" style="color: white;" type="submit"></span>
</button>
}
<script src="~/Scripts/jquery-1.10.2.min.js"></script>
<script>
$('form').submit(function (ev) {
ev.preventDefault();
var data = new FormData();
var fileInput = $('#file')[0];
var file = fileInput.files[0];
data.append(file.name, file);
var number = $("#Number").val();
data.append("Number", number);
$.ajax({
url: '@Url.Action("Save", "Editor")',
type: 'POST',
data: data,
processData: false,
contentType: false,
success: function() {
alert("bhasya")
}
});
});
</script>
答案 1 :(得分:0)
您应该使用Ajax发布它。这会使你的请求异步。
请参阅以下示例:
$.ajax ({
url: 'controller/save',
type: 'POST',
success: function (result){
if (result) {
alert ('saved');
}
}
});