Мой пример работает только с одним файлом.Мне нужен массив файлов.Я использую angularJS 1.7 и asp.net-core 2.0
HTML
<div class="post">
<form>
<textarea ng-model="Headline" name="Headline" rows="2" cols="63" class="form-control"></textarea>
<textarea ng-model="BodyText" name="BodyText" rows="4" cols="63" class="form-control"></textarea>
<input type = "file" file-model = "myFile" multiple/>
<input id="Submit" class="btn btn-default" ng-click="createPost()" type="submit" value="Пост" />
</form>
</div>
Метод creatPost в контроллере AgularJs
$scope.createPost = function () {
var model = {
Headline: $scope.Headline,
BodyText: $scope.BodyText,
ImgPost: $scope.myFile
}
$http({
method: 'POST',
url: '/api/Blog/create-post/',
headers: {
'Content-Type': undefined
},
data: model,
transformRequest: function (data, headersGetter) {
var formData = new FormData();
angular.forEach(data, function (value, key) {
formData.append(key, value);
});
return formData;
}
})
.then(function onSuccess(response) {
if (response.data = "Ok") {
$window.location.reload();
}
})
.catch(function onError(response) {
console.log("Error")
});
}
Модель на C #
[ScaffoldColumn(false)]
public int Id { get; set; }
[ScaffoldColumn(false)]
public string User { get; set; }
[Required(ErrorMessage = "")]
[StringLength(100, MinimumLength = 1, ErrorMessage = "")]
public string Headline { get; set; }
[Required(ErrorMessage = "")]
[StringLength(1000, MinimumLength = 1, ErrorMessage = "")]
public string BodyText { get; set; }
[ScaffoldColumn(false)]
public DateTime? Date_Time { get; set; }
public IFormFile ImgPost { get; set; }
И подпись метода
[HttpPost]
[Route("create-post")]
public async Task<object> PostSaveOnFile(PostViewModel model)
{
Как мне нужно изменить мою модель в # public IFormFile ImgPost {get;задавать;} И внесите изменения на моем контроллере angularJS, и я смогу отправить массив файлов.Благодарю.
Как я понял, проблема в моей директиве fileReader
(function (angular) {
angular.module('app').directive('fileModel', ['$parse', function ($parse) {
return {
restrict: 'A',
link: function(scope, element, attrs) {
var model = $parse(attrs.fileModel);
var modelSetter = model.assign;
element.bind('change', function() {
scope.$apply(function() {
modelSetter(scope, element[0].files[0]);
});
});
}
};
}]);
})(window.angular);
Если я поменяю в моей модели C # на IList или IEnumerable, то это будет только первый файл.Я так и не понял, как поменять мой деректив на массив