我有通过PHP检索formData(angularjs)的问题。我怎样才能上传文件属性,即。 $ myfile->来自php文件的名字?
控制器,服务和指令如下:
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]);
});
});
}
};
}]);
app.service('fileUpload', ['$http', function ($http) {
this.uploadFileToUrl = function(file, uploadUrl){
var fd = new FormData();
fd.append('file', file);
$http.post(uploadUrl, fd, {
transformRequest: angular.identity,
headers: {'Content-Type': undefined}
})
.success(function(){
console.log(file.name);
})
.error(function(){
});
}
}]);
app.controller('uploadController', ['$scope', 'fileUpload', function($scope, fileUpload){
$scope.uploadFile = function(){
var file = $scope.myFile;
console.log('file is ' + JSON.stringify(file));
var uploadUrl = 'json/file_upload';
fileUpload.uploadFileToUrl(file, uploadUrl);
};
}]);
形式:
<div ng-controller="uploadController">
<input type="file" file-model="myFile"/>
<button ng-click="uploadFile()">upload me</button>
</div>
PHP文件:
$myFile = json_decode(file_get_contents('php://input'), true);
它确实无效。我的问题是......我怎样才能获得文件属性,即。 $ myfile-&gt;来自PHP文件的名称?
答案 0 :(得分:0)
好的,问题解决了:]
指令,服务,控制器工作正常 - 问题出在PHP方面......
正确的表单模板:
<div ng-controller="uploadController">
<input type="file" name="file" file-model="myFile"/>
<button ng-click="uploadFile()">upload me</button>
</div>
在这种情况下:
$var = json_decode(file_get_contents('php://input'));
什么都不返回,但是:
$_FILES['file']['name']
这是神奇的事情:]