angularjs — ng-file-upload не может получить данные файла в угловом контроллере, а также на стороне сервера. Переполнение стека

Это моя форма с ng-file-upload,

<form ng-submit="form.$valid && picture(user)" name="form" novalidate class="form-horizontal">
<input
name="name"ng-model="user.name"type="text"class="form-control"placeholder="Name"ng-required="true"/>
<div class="col-sm-3">
<input
type="file"ngf-select
ng-model="user.profile"name="profile"accept="image/*"ngf-max-size="10MB"required
ngf-model-invalid="errorFile"/>
<span class="erra" ng-show="form.profile.$error.required">*required</span><br>
<span class="erra" ng-show="form.profile.$error.maxSize">File too large
{[{errorFile.size / 1000000|number:1}]}MB: max 2M</span>
<img
width="150"ng-show="form.profile.$valid"ngf-thumbnail="user.profile"class="thumb"/>
<button ng-click="user.profile = null" ng-show="user.profile">Remove</button>
</div>
</form>

Вот мой js

Ajax.post('/register', user)            // Ajax is my custom factory it is working
.then(function(data) {
console.log(data)
}, function(error) {
console.log(error.data.message);
});

Для обработки в моем бэкэнде (PHP), когда я запрашиваю его, существует только пустой массив и не получено содержимое файла. В чем может быть проблема?

0

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]