使用 uploadify 自动提交用户文件,在我的控制器方法 Request.Files["Name"] 中不断返回 null 但 request.form 不为 null,当我设置断点并调试它时,我可以在 request.form 中看到该文件. 我错过了什么吗?我正在 mvc2 上对此进行测试,但我计划在 mvc4 上使用它。
<link href="../../Content/uploadify.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script src="../../Scripts/jquery.uploadify.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$('#file_upload').uploadify({
'swf': '/Content/uploadify.swf',
'uploader': '/Home/UploadFile',
'auto': true
// Your options here
});
});
</script>
</head>
<body>
<%--<% using (Html.BeginForm("UploadFile", "Home", FormMethod.Post,
new { enctype = "multipart/form-data" }))
{ %>--%>
<input type="file" name="file_upload" id="file_upload" style="margin-bottom: 0px" />
<%-- <% } %>--%>
控制器方法:
[HttpPost]
public ActionResult UploadFile(HttpPostedFileBase file)
{
var theFile = Request.Files["file_upload"];
return Json("Success", JsonRequestBehavior.AllowGet);
}
如果我添加一个提交按钮然后提交它会起作用。我需要自动,但没有提交按钮。