我正在使用此处找到的示例。Mozilla 开发人员
我对这个例子很感兴趣。
function upload(postUrl, fieldName, filePath)
{
var formData = new FormData();
formData.append(fieldName, new File(filePath));
var req = new XMLHttpRequest();
req.open("POST", postUrl);
req.onload = function(event) { alert(event.target.responseText); };
req.send(formData);
}
但我不明白这个例子的去向。filePath 是可以理解的,但我可以找到 postUrl 、 fieldName 。我正在处理具有用于图像上传的拖放区域的页面上的图像上传。如何使用此功能将图像上传到我的网站?