最佳答案
如何为此代码编写 functionToGenerateMD5hash
?我已经有了 fileVideo
,我需要通过单击按钮将相应的 md5散列发送到服务器。
$("#someButton").click(function() {
var fr = new FileReader();
fr.onload = function(e) {
string md5 = functionToGenerateMD5hash(e.target.result);
// send md5 here
};
fr.readAsArrayBuffer(fileVideo);
另外,您能使用它在 Node.js 中生成 MD5散列吗?