0
複数のファイルを(ブルーインプのjqueryファイルのアップロードごとに)アップロードすると、[httppost]アクションはファイルごとに1回入力されます。列挙されたファイルコンテナで1つだけのポストバックを指定して反復することは可能ですか?Jquery File Uploadを指定すると、複数のファイルに対して1回だけポストバックできますか?
ビュー:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="@Url.Content("~/Scripts/jquery.ui.widget.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.iframe-transport.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.fileupload.js")" type="text/javascript"></script>
<input id="fileupload" type="file" name="files" multiple="multiple"/>
コントローラー:
public ActionResult Index()
{
return View();
}
[HttpPost]
public ActionResult Index(IEnumerable<HttpPostedFileBase> files)
{
// This is posted back for every file that gets uploaded...I would prefer it only post back once
// with a collection of files to iterate. Is this possible?
foreach (var file in files) // There is only ever one file in files
{
var filename = Path.Combine(Server.MapPath("~/App_Data"), file.FileName);
file.SaveAs(filename);
}
return View();
}