我正在尝试使用以下表单并将其转换为使用XMLHttp。无法获得如何将其转换为使用XMLHttp的实例。
<form enctype='multipart/form-data' action='process.do'>
<input id='myfile' type='file'>
<input type='hidden' name='systemid' value='a1312423r1rde223e423e'>
<input type='hidden' name='systemname' value='My value'>
</form>
var x = new XMLHttpRequest()
x.open('POST', 'process.do');
// Where to add systemid, systemname parameters?
x.send($('myfile').files[0])
答案 0 :(得分:1)
从表单对象中实例化$query = $query->inRandomOrder();
a FormData object。
send()
这将包括表格中的所有数据。
您需要为文件输入var x = new XMLHttpRequest()
x.open('POST', 'process.do');
x.send(new FormData(document.querySelector("form")));
。