mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
synchronously upload files
fix https://github.com/chrislusf/seaweedfs/issues/807
This commit is contained in:
parent
4773497d2c
commit
ad08a52ab6
|
@ -162,7 +162,7 @@ function uploadFile(file, i) {
|
|||
var url = window.location.href
|
||||
var xhr = new XMLHttpRequest()
|
||||
var formData = new FormData()
|
||||
xhr.open('POST', url, true)
|
||||
xhr.open('POST', url, false)
|
||||
|
||||
formData.append('file', file)
|
||||
xhr.send(formData)
|
||||
|
|
Loading…
Reference in a new issue