我在构造函数上有一个名为bound的react函数,在单击“更新”按钮时调用该函数。在该更新方法中,我想做一个像这样的简单的https get请求
xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET","https://test", true)
xmlHttp.send(null)
enter code here
但我想在它执行此操作时打开一个新选项卡 我没有输入axios或其他任何东西。
答案 0 :(得分:0)
不要忘记写xmlHttp的回调
xmlHttp.onreadystatechange = yourcallback
答案 1 :(得分:0)
xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET","https://test", true)
xmlHttp.send(null)
如果你想对可能被发回的状态进行任何处理,这可以在不需要进行更改的情况下工作,但回调会更好。