我做了深入的研究,试图找到从客户端上传文件的更实用的方法,我决定选择输入类型文件 html 元素。
问题是:我在控制器中什么都没有,我什至看不到在 firebug 中设置的 fakepath 字符串。
看法:
<form action="action" id="id" method="POST" enctype="multipart/form-data">
<table id="tblId">
<tr>
<td><input type="file" name="file" /></td>
</tr>
</table>
<input type="submit" value="import" />
</form>
如您所见,我正确使用了 enctype。数据按应有的方式发送到控制器,但没有数据。
控制器:
[HttpPost]
public ActionResult opImportFile(FormCollection form) {
var file = Request.Files["file"];
if (file != null)
{
return Content("ok");
}
else
{
return Content("bad");
}
}
而且我总是变得“坏”!太糟糕了。有没有其他方法可以尝试,或者我做错了什么?
PS -> 这是一个 ajax 请求:
$('#formUpdStoringSettings').submit(function (e) {
e.preventDefault();
var form = $(this);
alert($('input[name=file]').val()); //Here I am able to get the fakepath...
alert(form.serialize()); //Here I get nothing...
$.ajax({
url: form.attr('action'),
type: form.attr('method'),
data: form.serialize(),
success: function (response) {
}
});
}