Webuploader upload Pictures how do I request to upload more than one picture at a time?

the current situation is that the uploaded image is a queue. If you upload one image at a time, multiple images will be called multiple times

Apr.18,2021

use Promise to implement

function postImg(file){
    return new Promise(res => {
        var formdata = new FormData()
        formdata.append('img', file)
        axios.post(url, formdata)
        .then(result => {res(result)})
    })//promise
}

var fileArr = []
//file
filePromises = fileArr.map(val => postImg(val))
//promise
Promise.all(filePromises)
.then(val => {
    // 
})
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3162e-2b0f2.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3162e-2b0f2.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?