fix: guest upload error when hide login btn

This commit is contained in:
qkqpttgf 2020-05-10 15:20:05 +08:00 committed by GitHub
parent cb0cf8f8e4
commit f5eaea3917
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -877,19 +877,19 @@
reader.readAsArrayBuffer(blob);
}
readblob(asize);
<!--LoginStart-->
<!--GuestStart-->
var spark = new SparkMD5.ArrayBuffer();
<!--LoginEnd-->
<!--GuestEnd-->
reader.onload = function(e){
var binary = this.result;
<!--LoginStart-->
<!--GuestStart-->
spark.append(binary);
if (asize < newstartsize) {
asize += chunksize;
readblob(asize);
return;
}
<!--LoginEnd-->
<!--GuestEnd-->
var xhr = new XMLHttpRequest();
xhr.open("PUT", url, true);
//xhr.setRequestHeader('x-requested-with','XMLHttpRequest');
@ -916,7 +916,7 @@
xhr3.onload = function(e){
console.log(xhr3.responseText+','+xhr3.status);
}
<!--LoginStart-->
<!--GuestStart-->
var filemd5 = spark.end();
var xhr4 = new XMLHttpRequest();
xhr4.open("GET", '?action=uploaded_rename&filename='+encodeURIComponent((file.webkitRelativePath||file.name))+'&filemd5='+filemd5);
@ -941,7 +941,7 @@
document.getElementById('upfile_a1_'+tdnum).href = filename;
document.getElementById('upfile_cpbt_'+tdnum).style.display = "";
}
<!--LoginEnd-->
<!--GuestEnd-->
EndTime=new Date();
MiddleStr = '<!--constStr@EndAt-->:'+EndTime.toLocaleString()+'<br>';
if (newstartsize==0) {