以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  又一个url的问题  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=188879)

--  作者:ygg8310
--  发布时间:2023/10/27 12:37:00
--  又一个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界面该怎么填写?

--  作者:有点蓝
--  发布时间:2023/10/27 13:56:00
--  
服务端哪个地址接收数据的就填哪个,比如

httprequest事件
Select Case e.Path
    Case "test.htm"
       接收文件的代码

End Select

js

xhr.open(\'POST\',\'http://www.abc.com/test.htm\', true);