我正在尝试通过ajax向控制器发送FormData
来保存文件,问题是即使使用FormData
函数将所有变量转换为一种形式,我的ajax也无法正常工作。
我尝试使用表格,但是在表格中,我不能使用表格标签,因为我的按钮在另一个td中。当我将其用于整个表时,它也无法正常工作,我创建了FormData
,并在其中附加了所有变量,其余变量均有效,但image无效。
index.cshtml:
<tr class="form" style="display:none">
<td class="name">
<input type="text" name="Jméno" value="" />
</td>
<td class="price">
<input type="number" name="Cena" value="" />
</td>
<td class="quantity">
<input type="number" name="Mnozstvi" value="" />
</td>
<td class="image">
<input type="file" id="fileOne" name="fileOne" runat="server" />
</td>
<td>
<button class="FirstSave" type="button" id="btnUpload">Uložit</button>
<button class="getBack">Zahodit</button>
</td>
</tr>
这是我的JavaScript
$(".FirstSave").click(function () {
let file = document.getElementById('fileOne').file;
let form = new FormData;
form.append('Image', file);
form.append('Name', name);
form.append('Price', price);
form.append('Quantity', quantity);
$.ajax({
url: "Insert",
method: "POST",
cache: false,
processData: false,
data: form,
});
})
产品吸气剂和吸气剂
public class Product
{
public string Name { get; set; }
public int Price { get; set; }
public int Quantity { get; set; }
public string ImageUrl { get; set; }
public HttpPostedFileBase Image { get; set; }
}
产品负责人
[HttpPost]
public ActionResult Insert(Product product)
{
HttpPostedFileBase file = product.Image;
if (file != null)
{
var fileName = Path.GetFileName(file.FileName);
product.ImageUrl = Path.Combine(Server.MapPath("~/Content/Images/Products/"), fileName);
file.SaveAs(product.ImageUrl);
}
return null;
}
答案 0 :(得分:0)
这是对我有用的代码:
$(document).on("submit", "#myFormId", function (event) {
event.preventDefault();
event.stopImmediatePropagation();
var formData = new FormData(this);
$.ajax({
url: 'my url',
type: 'POST',
data: formData,
success: function (response) {
if (response) {
// Do whatever you want to do with response
}
},
error: function (error) {
console.log(error)
},
cache: false,
contentType: false,
processData: false
});
return false;
});
我看到您的Ajax设置中缺少contentType: false
。这是使用ajax上传文件所必需的。
答案 1 :(得分:0)
改为使用此:
var fileName = file.FileName;
替换您的行
var fileName = Path.GetFileName(file.FileName);
所以如果我要更改您的代码:
var fileName = file.FileName;
product.ImageUrl = Path.Combine(Server.MapPath("~/App_Data/"), fileName);
file.SaveAs(product.ImageUrl);
如果这还不够,请检查我用于其中一个上传的js代码:
for (var x = 0; x < files.length; x++) {
data.append("file" + x, files[x]);
}
答案 2 :(得分:0)
首先确认你的表单标签包含表单 enctype="multipart/form-data"。 第二个添加 contentType: false 在你的 ajax 调用中
$.ajax({ 网址:form_url, 类型:form_method, 内容类型:假, 数据:formData, });