如何实现文件上传预览(http://opoloo.github.io/jquery_upload_preview/)。我正在使用此文件上传。 https://github.com/danialfarid/angular-file-upload
如果我添加此预览脚本,则角度脚本在我的页面中不起作用。
这是我的控制器结构。
var app = angular.module('nomunoli.controllers', []);
app.controller('NMNL012Ctrl', ['$scope', '$routeParams', 'NMNL012Service', '$location',
function ($scope, $routeParams, NMNL012Service, $location) {
var request = {'groupId': $routeParams.id};
$scope.group = NMNL012Service.nmnl012FUN14.query(request);
$scope.talentList = NMNL012Service.nmnl012FUN01.query(request);
}]
);
这是页面中的输入div。
<div class="form-group col-md-12">
<div class="col-md-4">
<input id="talentUpload" type="file" ng-file-select ng-model="talentFile" accept="image/*" />
</div>
</div>