我尝试使用angular-file-md5库,但是我仍然无法遵循其自述文件,可能是由于我不是angular方面的专家。 我创建了一个小型github项目,在该项目中,我基于jhipster框架(角度6)生成了一个基本的Web应用。
https://github.com/flefevre/jhipsterangularjsmd5/tree/master/src/main/webapp/app/entities/filehash
但是我不必在其中添加自述代码
angular.module('yourApp')
.controller('yourController', ['fileMd5Service', function(fileMd5Service) {
this.hashFile = function(file) {
fileMd5Service.md5(file)
.progress(function(stats) {
console.log('Hashed ' + stats.loaded + ' B out of ' + stats.total + ' B');
})
.error(function(error) {
console.log('Error calculating md5: %o', error);
}).success(function(md5sum) {
console.log('MD5 for ' + file.name + ' is ' + md5sum);
});
};
}]);
在哪个文件
您有什么建议吗? 谢谢