@model Slika.WebUI.Models.ImagesListViewModel
<html>
<head>
<title></title>
<meta charset="utf-8" />
<link rel="stylesheet" href="/Content/FIleUpload.css" type="text/css">
<meta name="viewport" content="width=device-width" />
<script src="/Scripts/MyScript/fileUpload.js"></script>
<script type="text/javascript" src="/Scripts/MyScript/Gallary.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('form').submit(function () {
$.ajax({
url: this.action,
type: this.method,
data: $(this).serialize(),
success: function (result) {
$('#images').html(result);
}
});
return false;
});
});
</script>
</head>
<body>
<div id="myForm">
@using (Html.BeginForm("SaveImage", "Image", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
@Html.Hidden("AlbumID", Model.AlbumID)
@Html.Hidden("page", Model.PagingInfo.CurrentPage)
<div class="file_upload">
<button type="button">Выбрать</button>
<div ng-app="myApp" ng-controller="myController">Select</div>
<input type="file" accept="image/*" multiple="multiple" name="images">
</div>
<br />
}
</div>
<div id="images">
@{
Html.RenderPartial("ImageSummary", Model);
}
</div>
<div class="pager">
@Html.PageLinks(Model.PagingInfo, x => Url.Action("List", new { page = x, Model.AlbumID }))
</div>
</body>
</html>
И такой скрипт предназначенный для загрузки файлов
$(function () {
var wrapper = $(".file_upload"),
inp = wrapper.find("input"),
btn = wrapper.find("button"),
lbl = wrapper.find("div");
// Crutches for the :focus style:
btn.focus(function () {
wrapper.addClass("focus");
}).blur(function () {
wrapper.removeClass("focus");
});
// Yep, it works!
btn.add(lbl).click(function () {
inp.click();
});
var fileApi = (window.File && window.FileReader && window.FileList && window.Blob) ? true : false;
inp.change(function () {
var fileName;
if (fileApi && inp[0].files[0])
fileName = inp[0].files[0].name;
else
fileName = inp.val().replace("C:\\fakepath\\", '');
if (!fileName.length)
return;
if (lbl.is(":visible")) {
lbl.text(fileName);
btn.text("Выбрать");
} else
btn.text(fileName);
}).change();
$('body').on('change', 'input[type=file]', function () { $('form').submit(); });
});
$(window).resize(function () {
$(".file_upload input").triggerHandler("change");
});
Проблема в том,что в контроллер на место картинок приходит null
и страницу перезагружает ajax,если удалить код с ajax прекрасно происходит загрузка картинок.Может кто либо уже сталкивался с подобным?