angular 上传图片并显示_angularjs图片上传和预览 - ng-file-upload

本文介绍了如何在 Angular 应用中实现图片上传及预览功能。通过使用 ng-file-upload 库,用户可以选择图片,并在上传过程中显示进度条。在文件选择后,使用 Upload.upload 方法发送 AJAX 请求到指定 URL 进行文件上传。
摘要由CSDN通过智能技术生成

ajax上传文件

安装

bower install ng-file-upload-shim --save(for non html5 suppport)

bower install ng-file-upload --save

使用实例

Upload on file select

accept="image/*" ngf-max-height="1000" ngf-max-size="1MB">

Select File

File:

{{f.name}} {{errFile.name}} {{errFile.$error}} {{errFile.$errorParam}}

ng-bind="f.progress + '%'">

{{errorMsg}}

//inject angular file upload directives and services.

var app = angular.module('fileUpload', ['ngFileUpload']);

app.controller('MyCtrl', ['$scope', 'Upload', '$timeout', function ($scope, Upload, $timeout) {

$scope.uploadFiles = function(file, errFiles) {

$scope.f = file;

$scope.errFile = errFiles && errFiles[0];

if (file) {

file.upload = Upload.upload({

url: 'https://angular-file-upload-cors-srv.appspot.com/upload',

data: {file: file}

});

file.upload.then(function (response) {

$timeout(function () {

file.result = response.data;

});

}, function (response) {

if (response.status > 0)

$scope.errorMsg = response.status + ': ' + response.data;

}, function (evt) {

file.progress = Math.min(100, parseInt(100.0 *

evt.loaded / evt.total));

});

}

}

}]);

.thumb {

width: 24px;

height: 24px;

float: none;

position: relative;

top: 7px;

}

form .progress {

line-height: 15px;

}

.progress {

display: inline-block;

width: 100px;

border: 3px groove #CCC;

}

.progress div {

font-size: smaller;

background: orange;

width: 0;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值