-- 又一个url的问题
var file = fileInput.files[0];var formData = new FormData();
formData.append(\'file\', file);
var xhr = new XMLHttpRequest();
xhr.open(\'POST\', \'url\', true);
xhr.onload = function () {
if (xhr.status === 200) {
console.log(\'upload success\');
}
};
xhr.send(formData);
老师帮我指点一下,这个红色的url部分
在普通的html界面该怎么填写?