我在单独的视图 MyAddForm.cshtml 中有一个表单
@model MyViewModel
<form id="my_form" class="form-inline" asp-action="MyAddForm" asp-controller="Profile" data-ajax="true" data-ajax-mode="replace" data-ajax-update="#my_form" data-ajax-method="POST" enctype="multipart/form-data">
...
<div class="row">
<div class="form-group col-xs-12">
<label asp-for="Name"></label>
<input class="form-control input-group-lg" type="text" asp-for="Name" />
<span asp-validation-for="Name"></span>
</div>
</div>
...
<div class="row">
<div class="form-group col-xs-12">
<label asp-for="Image"></label>
<input asp-for="Image" type="file" class="form-control" />
</div>
</div>
...
</form>
有 ViewModel:
public class MyViewModel
{
[Display(Name = "Name")]
public string Name { get; set; }
[Display(Name = "Image")]
[DataType(DataType.Upload)]
[FileExtensions(Extensions = "jpg,jpeg")]
public IFormFile Image { get; set; }
}
并且有控制器:
[HttpPost]
public async Task<IActionResult> MyAddForm(MyViewModel model)
{
//model.Image always null...
...
return PartialView("~/Views/Profile/MyAddFormForm.cshtml", model);
}
问题是如果表单具有属性:data-ajax="true",那么在控制器中模型到达时没有下载文件(null)。这是因为“Content-Type”标头未设置为“multipart / form-date”,尽管它已在表单上指示。
我需要通过“unobtrusive-ajax”准确返回结果,在这种情况下如何实现将viewModel与文件一起发送?
更新:
我尝试使用 $ajax jquery,这就是您所需要的并且它可以工作。但我不明白为什么提交被确认2-3次,而不是一次......
$(document).on("submit", '#my_form', function (event) {
var formdata = new FormData($('#my_form')[0]);
$.ajax({
url: '@Url.Action("MyAddForm", "Profile")',
type: 'POST',
data: formdata,
processData: false,
contentType: false
}).done(function (result) {
$('#my_form').html(result);
});
event.preventDefault();
});
更新2:
在此构造中:“ $(document).on("submit", '#my_form', function (event) {}
”默认动作取消事件默认不起作用,因此存在数据的双重发送......
在调用 ajax 之后,我不得不插入这段代码,它呈现了表单本身:
...
}).done(function (result) {
$('#add_cat').html(result);
...
$('#my_form').submit(function (e) {
e.preventDefault(); //Now the cancellation event works
var formdata = new FormData($('#my_form')[0]);
$.ajax({
url: '@Url.Action("MyAddForm", "Profile")',
type: 'POST',
data: formdata,
processData: false,
contentType: false
}).done(function (result) {
$('#my_form').html(result);
});
return false;
});
});
现在它起作用了:)对不起我的英语......