这里,我的问题是我目前正在使用ng2-uploader上传图片并将哈希添加到列表中。
下面是我现有的代码
import {ParallelHasher} from 'ts-md5/dist/parallel_hasher';
let hasher = new ParallelHasher('/path/to/ts-md5/dist/md5_worker.js');
hasher.hash(fileList[i]).then(function(result) {
console.log('md5 of filelist is', result);
});
但是现在我要使用uuid代替它
import { v4 as uuid } from 'uuid';
uuid()
那么如何为上述文件列表实现uuid()
。