如何将文件和其他人的请求发送到服务器(其余)? 到目前为止我尝试过的:
func = async(event)=> {
const body = { city_id: 8 }
const filesToServer = new FormData();
Object.values(event.files).forEach(file => filesToServer.append(file.name, file));
myreqFunction(path, [...filesToServer, body]);
}