我是angularjs的新手,并试图实现简单的文件上传,但是我试图从控制器访问文件时将文件视为未定义
articles.html
<section data-ng-controller="ArticlesController" data-ng-init="find()">
<div class="page-header">
</div>
<div >
<input type="file" file-model="myFile"/>
<button ng-click="uploadFile()">upload me</button>
</div>
</section>
以下是我试图访问文件对象的控制器
angular.module('articles').controller('ArticlesController', ['$scope', '$stateParams', '$location','Authentication', 'Articles',
function($scope, $stateParams, $location, Authentication, Articles) {
$scope.authentication = Authentication;
$scope.uploadFile = function() {
console.log('came here');
var file = $scope.myFile;
console.log('file is ' + file);
};
}
]);
编辑:
我尝试使用https://github.com/ghostbar/angular-file-model并使用meanjs样板代码
其中一步是在html页面中包含angular-file-model.js。 添加到您的HTML文件:
我在哪个文件中包含,以及如何包含angular-file-model.js文件。
答案 0 :(得分:0)
使用Angular文件输入并不是那么简单。您需要使用引用here的外部库。
我个人使用BlueImp FileUpload: https://blueimp.github.io/jQuery-File-Upload/angularjs.html
答案 1 :(得分:0)
您似乎正在使用Angular-file-Model
他们也有Plunker,而且工作得非常好。你有没有按照他们在git中提到的所有步骤进行操作?检查是否在主模块中注入了文件模型依赖项,如:
angular.module('articles', ['file-model']);
答案 2 :(得分:0)
我曾多次使用Danial Farid的Angular File Upload并取得了巨大的成功。
答案 3 :(得分:0)
angular.module('myApp').directive('fileModel', ['$window',function ($window) {
return {
restrict: 'A',
require:'ngModel',
link: function(scope, element, attrs,ngModel) {
element.bind('change', function(){
scope.$apply(function(){
var r = new FileReader();
r.onloadend = function(){
var svg = r.result;
ngModel.$setViewValue($window.btoa(svg));
ngModel.$render();
};
var file = element[0].files[0];
if(file !== undefined){
if(file.type === 'image/svg+xml' || file.type === 'image/svg'){
ngModel.$setValidity('svgimage', true);
r.readAsDataURL(file);
}else{
ngModel.$setValidity('svgimage', false);
ngModel.$setViewValue(' ');
ngModel.$render();
}
var value = element[0].value ;
value = value.substr(value.lastIndexOf('\\') + 1,value.length);
document.getElementById('fileurl').value = value;
document.getElementById('fileurl').title = value;
}
});
});
}
};
}]);
<input ng-model="icon.icon" file-model class="form-control upload" type="file" required/>