synchronously upload files
fix https://github.com/chrislusf/seaweedfs/issues/807
This commit is contained in:
@@ -162,7 +162,7 @@ function uploadFile(file, i) {
|
|||||||
var url = window.location.href
|
var url = window.location.href
|
||||||
var xhr = new XMLHttpRequest()
|
var xhr = new XMLHttpRequest()
|
||||||
var formData = new FormData()
|
var formData = new FormData()
|
||||||
xhr.open('POST', url, true)
|
xhr.open('POST', url, false)
|
||||||
|
|
||||||
formData.append('file', file)
|
formData.append('file', file)
|
||||||
xhr.send(formData)
|
xhr.send(formData)
|
||||||
|
|||||||
Reference in New Issue
Block a user