1 回答
TA贡献1804条经验 获得超2个赞
您的意思是您只想获取数据而不发送任何称为 http get 请求的数据,您可以按以下方式进行操作。
function get(url)
{
var xm = new XMLHttpRequest();
// false for synchronous
xm.open("GET",url,false);
xm.send(null);
return xm.responseText;
}
console.log(get('your Url'));
您需要指定 Http 端点(后端)的 url。
如果您正在发出异步请求,那么下面的代码有效,,
function get(theUrl, callback)
{
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function() {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
callback(xmlHttp.responseText);
}
// true for asynchronous
xmlHttp.open("GET", theUrl, true);
xmlHttp.send(null);
}
get('your url',(responseText)=>{
console.log(responsetext);
});
- 1 回答
- 0 关注
- 85 浏览
添加回答
举报