我正在使用angularjs。我使用带有laravel的angularjs创建了一个文件上传功能。使用FormData上传的文件工作正常。但是当我尝试通过PUT方法发送文件时,服务器端没有响应。
我已经完成了以下答案。 Uploading a file with jquery and sending as a PUT和How to upload a file using an HTTP "PUT" using JQuery?,但我无法找到解决方案。
这是我的代码。
<input type="file" ng-file-model = "formData.files" multiple>
我的代码指令
app.directive('ngFileModel', ['$parse', function ($parse) {
return {
restrict: 'A',
link: function (scope, element, attrs) {
var model = $parse(attrs.ngFileModel);
var isMultiple = attrs.multiple;
var modelSetter = model.assign;
element.bind('change', function () {
var values = [];
angular.forEach(element[0].files, function (item) {
var value = item;
values.push(value);
});
scope.$apply(function () {
if (isMultiple) {
modelSetter(scope, values);
} else {
modelSetter(scope, values[0]);
}
});
});
}
};
}]);
这是我的函数,它将表单数据转换为FormData
constructFormData : function( data ) {
var fd = new FormData();
for (var key in data) {
var value = data[key];
angular.forEach(data, function (file, i) {
fd.append('files['+i+']', file);
});
}
return fd;
},
这是我的控制器
var formData = GeneralService.constructFormData($scope.formData);
FileService.update( formData )
.success(function( data ){
if(data.status == 403) {
$location.path('/403');
}
if(data.success) {
console.log(data);
} else {
ValidationService.showValidationErrors(data.errors);
}
});
这是我的服务
update : function(formData) {
return $http({
method: 'PUT',
url: $rootScope.baseurl +'/files',
data: formData,
dataType: 'json',
headers: {'Content-Type': undefined}
});
},
服务器端(laravel)
routes.php文件
Route::put('/files', ['uses' => 'FilesController@update']);
FilesController
public function update(Request $request) {
$data = $request->all();
print_r($data);
}
以上print_r
功能不显示任何内容。
我使用print_r($request->all());
获取发布的数据,它会提供空数据。我不知道哪里弄错了。如果我错误地提出这个问题,请道歉。
答案 0 :(得分:1)
我遇到了同样的问题,最后我找到了这段代码
var formData = new FormData();
angular.forEach($scope.data, function (value, key) {
formData.set(key, value);
});
$http.post(uploadUrl, formData, {
transformRequest: angular.identity,
headers : {'Content-Type': undefined}
});