角度上传图片并显示给用户
我喜欢在用户选择图像时实现一个用户界面,并且该图像会立即显示给他们以供审阅。 用户必须点击“提交”才能将图像上传/保存到他们的个人资料中。
我遇到了“即时显示回用户部分”的问题。
我正在使用带有以下标记和控制器的角度FormData:
MARKUP
<input id="chooseFile" type="file" file-model="picFile" />
<img src="{{uploadedImage}}" /> <!-- this populates with filename but what is the path?? -->
CONTROLLER
angular.element('#chooseFile').change(function(){
var file = $scope.picFile; // this comes up "undefined" since file is still uploading when this is fired
$scope.uploadedImage = file.name;
});
上面的代码有2个主要问题(在注释中描述):
1)在控制器中, file
显然undefined
因为即使最小的文件上传> 0,而回调几乎立即被触发。 我使用$timeout
获得了它的工作,但这有点蹩脚。 我怎样才能回调等待,直到文件上传?
2)想法是使用Angular的数据绑定上传文件并将其显示在img
标签中。 这在src
中填充了文件名,但img的路径是什么。 缓存中的某些临时位置? 显然,我还没有设置路径来移动文件。
任何帮助感谢!
我也需要这个功能,一些我如何设法立即显示图像。
angular.module('HelloWorldApp', [])
.controller('HelloWorldController', function($scope) {
$scope.uploadavtar = function(files) {
//var fd = new FormData();
//Take the first selected file
//fd.append("file", files[0]);
var imagefile = document.querySelector('#file');
if (imagefile.files && imagefile.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#temp_image')
.attr('src', e.target.result);
};
reader.readAsDataURL(imagefile.files[0]);
this.imagefile = imagefile.files[0];
}else{
console.log("Image not selected");
}
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="HelloWorldApp">
<div ng-controller="HelloWorldController">
<input type="file" id="file" onchange="angular.element(this).scope().uploadavtar(this.files)"/>
</div>
<img src="" id="temp_image" width="100">
<div>
</div>
</div>
链接地址: http://www.djcxy.com/p/5357.html
上一篇: Angular upload image and display to user
下一篇: uploading file using multer is not working fully (nodejs)